body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #fff8fc;
  color: #333;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100dvh;
  text-align: center;
  position: relative;
}

.container {
  background-color: #fff;
  padding: 1.5rem;
  border-radius: 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  width: 100%;
}

.logo-top {
  text-align: center;
  margin-bottom: 1rem;

}

.logo-top img {
  max-width: 400px;
  height: auto;
  transition: transform 0.3s ease;
}

.logo-top img:hover {
  transform: scale(1.05);
}

h1 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

#goButton {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #c42079;
  color: white;
  text-decoration: none;
  border-radius: 0.5rem;
  transition: background-color 0.3s ease;
}

#goButton:hover {
  background-color: #a31a65;
}




@media (max-width: 540px){
  .container {
    max-width: 400px;
    padding: 1rem;
    margin-top: 1rem;
  }
  h1 {
    font-size: 1.5rem;
  }

  p {
    font-size: 0.8rem;
  }

  a{
    font-size: 0.8rem;
  }
  .logo-top img {
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .container {
    max-width: 300px;
    padding: 1rem;
    margin-top: 1rem;
  }
  .logo-top img {
    max-width: 200px;
  }

  h1 {
    font-size: 1rem;
  }

  p {
    font-size: 0.8rem;
  }

  a{
    font-size: 0.8rem;
  }

}