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

body {
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  background: #11161d;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.container {
  padding: 40px 24px;
  max-width: 700px;
}

.logo {
  width: 120px;
  max-width: 40vw;
  margin-bottom: 32px;
}

h1 {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 300;
  margin-bottom: 16px;
}

p {
  font-size: 1.1rem;
  color: #b8c0cc;
  margin-bottom: 32px;
}

.socials {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.socials a {
  color: #ffffff;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 10px 18px;
  border-radius: 999px;
  transition: 0.2s ease;
}

.socials a:hover {
  background: #ffffff;
  color: #11161d;
}