* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  height: 100vh;
  background: linear-gradient(to right, #000000, #222222);
  color: #fff;
  font-family: 'Segoe UI', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.container {
  max-width: 90%;
}

h1 {
  font-size: 3rem;
  letter-spacing: 2px;
}

h2 {
  font-size: 1.5rem;
  margin-top: 1rem;
  color: #ffcc00;
}

p {
  margin-top: 2rem;
  font-size: 1.3rem;
}

.socials {
  margin-top: 2rem;
}

.socials a {
  margin: 0 1rem;
  color: #ffcc00;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

.socials a:hover {
  color: #ffffff;
}
