* {
  box-sizing: border-box;
}

@font-face {
  font-family: 'Consolas';
  src: url('assets/Consolas.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

html, body {
  background-color: #000000;
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: 'Consolas', monospace;
}

h1 {
  font-size: 2rem;
}

:root {
  --text-color: rgba(230, 230, 230, 1)
}

.hero {
  bbackground-color: #000000;
  padding-top: env(safe-area-inset-top);
  background-image: url('assets/blue.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
  width: 100%;
  opacity: 0;
  animation: fadeIn 0.3s ease-in forwards;
}

.hero-text {
  color: var(--text-color);
  font-size: 1.5rem;
  margin-left: 5%;
  margin-top: 10%;
  max-width: 80%;
  text-align: left;
  line-height: 1.6;
}

.footer {
  padding: 2rem 3rem;
}

.footer-content {
  display: flex;
  justify-content: flex-end;
  gap: 3rem;
}

.footer-content a {
  color: var(--text-color);
  text-decoration: none;
  font-size: 1.2rem;
  transition: color 0.2s;
}

.footer-content a:visited {
  color: var(--text-color);
}

.footer-content a:hover,
.footer-content a:focus {
  color: var(--text-color);
  text-decoration: underline;
  outline: none;
}

a {
  color: #89c4f4;
  text-decoration: underline;
}
a:visited {
  color: #89c4f4;
}

a:hover,
a:focus {
  text-decoration: none;
}

@keyframes fadeIn {
  to { opacity: 1; }
}

@media (max-width: 768px) {
  .hero {
    height: 100svh;
  }
  .hero-text {
    font-size: 1.25rem;
    margin-left: auto;
    margin-right: auto;
  }
}
