/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(135deg, #1e3a8a, #3b82f6);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.overlay {
  padding: 2rem;
  max-width: 600px;
}

.content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.content h2 {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 1rem;
}

.content p {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: #dbeafe;
}

.contact a {
  color: #93c5fd;
  text-decoration: underline;
}

.socials {
  margin-top: 1.5rem;
}

.socials a img {
  width: 32px;
  margin: 0 10px;
  transition: transform 0.3s ease;
}

.socials a img:hover {
  transform: scale(1.2);
}

/* Responsive */
@media (max-width: 480px) {
  .content h1 {
    font-size: 2rem;
  }

  .content h2 {
    font-size: 1.2rem;
  }
}
