body {
  margin: 0;
  padding: 0;
  background-color: #000;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: white;
  text-align: center;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
}

.logo {
  width: 150px;
  opacity: 0;
  transform: scale(0);
  transition: all 1.5s ease-in-out;
  margin-bottom: 30px;
}

.animate-logo {
  opacity: 1;
  transform: scale(1);
}

.move-to-top {
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%) scale(0.6);
  transition: all 1.2s ease-in-out;
}

.content {
  max-width: 800px;
  margin-top: 160px;
  opacity: 0;
  transition: opacity 1.5s ease-in;
}

footer {
  margin-top: auto;
  padding: 30px 10px;
  font-size: 14px;
  opacity: 0.7;
}

footer a {
  color: #aaa;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

.social img {
  width: 30px;
  margin: 0 10px;
  vertical-align: middle;
}
