* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  height: 100vh;
  background: linear-gradient(120deg, #0f2027, #203a43, #2c5364);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

/* Main box */
.container {
  text-align: center;
  padding: 30px;
}

/* Text */
h1 {
  font-size: 2.5rem;
}

h1 span {
  color: #00ffd5;
}

p {
  margin-top: 10px;
  font-size: 1.1rem;
}

.tagline {
  color: #cccccc;
  margin-top: 5px;
}

/* Social icons */
.socials {
  margin-top: 25px;
  display: flex;
  justify-content: center;
  gap: 25px;
}

.socials a {
  color: white;
  font-size: 1.8rem;
  transition: transform 0.2s, color 0.2s;
}

.socials a:hover {
  color: #00ffd5;
  transform: scale(1.2);
}

/* Responsive */
@media (max-width: 600px) {
  h1 {
    font-size: 2rem;
  }

  .socials a {
    font-size: 1.5rem;
  }
}