* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Inter', sans-serif;
  background: linear-gradient(120deg, #0f2027, #203a43, #2c5364);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  text-align: center;
}
.container {
  max-width: 500px;
  padding: 20px;
}
.logo {
  width: 120px;
  margin-bottom: 20px;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}
p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}
.socials a {
  margin: 0 10px;
  display: inline-block;
}
.socials img {
  width: 30px;
  filter: brightness(0) invert(1);
  transition: transform 0.2s ease;
}
.socials img:hover {
  transform: scale(1.1);
}
