body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: #def3ff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
  color: #00344a;
  padding: 20px;
}

.container {
  max-width: 600px;
}

.hero-image {
  width: 100%;
  max-width: 400px;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.subtitle {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: #305d6e;
}

.socials {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.socials img {
  width: 32px;
  height: 32px;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

.socials img:hover {
  opacity: 1;
}
