body {
  margin: 0;
  background-color: #000;
  color: white;
  font-family: sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

h1 a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 2rem;
}

h2 {
  font-size: 1.8rem;
  font-weight: bold;
}

p {
  font-size: 1.1rem;
  font-weight: bold;
}

.instagram-logo {
  width: 80px;
  height: 80px;
  margin-top: 10px;
  border: 1px solid white;
  border-radius: 50px;
  padding: 10px;
  transition: ease-in-out 0.5s;
}

.instagram-logo:hover{
    width: 90px;
    height: 90px;
}