@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@400;500;600&display=swap');

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

body {
  font-family: 'Work Sans', sans-serif;
  line-height: 1.6;
  color: white;
  background-color: #0f0f0f;
}

::selection {
  background-color: #ffffff;
  color: #000000;
}

.hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  padding: 0 20px;
  text-align: center;
  margin-top: -50px;
}

.hero-buttons {
  display: flex;
  gap: 9px;
}

.hero h1 {
  font-size: 5rem;
  font-weight: bold;
  margin-bottom: 5px;
}

.hero p {
  font-size: 1.2rem;
  color: #aaa;
  margin-bottom: 30px;
}

.modern-button {
  display: inline-block;
  width: 220px;
  padding: 12px 0;
  border: none;
  border-radius: 3px;
  background: rgb(18, 18, 18);
  color: white;
  font-weight: bold;
  cursor: pointer;
  font-family: inherit;
  text-align: center;
  font-size: 1.0rem;
  margin-right: 10px;
  outline: 1px solid #454545;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
  transition: background-color 0.2s ease, transform 0.15s ease;
}

.modern-button:hover {
  background-color: rgb(38, 38, 38);
}

.footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: #0f0f0f;
  color: #666;
  text-align: left;
  padding: 10px 10px;
  font-size: 0.9rem;
  font-family: inherit;
  user-select: none;
  border-top: 1px solid #333;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.fade-in {
  opacity: 0;
  animation: fadeInUp 1s ease-out forwards;
}

.fade-in-delay-1 { animation-delay: 0.2s; }
.fade-in-delay-2 { animation-delay: 0.4s; }
.fade-in-delay-3 { animation-delay: 0.5s; }
.fade-in-delay-4 { animation-delay: 0.6s; }
