body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-color: #000000;
  color: #ffffff;
}

#splash {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #000000;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  animation: splashAnimation 3s ease-in-out forwards;
}

#splash img {
  width: 400px;
  height: auto;
  animation: logoAnimation 3s ease-in-out forwards;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #111111;
  border-bottom: 1px solid #333333;
  padding: 10px 20px;
  position: relative;
  z-index: 1001;
}

.logo img {
  height: 40px;
  width: auto;
  transition: opacity 0.3s ease;
}

.logo a {
  position: relative;
  display: inline-block;
    border: 1px solid black;

}

.logo a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../img/nat-logo-black.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.logo a:hover::after {
  opacity: 1;
}

.logo a:hover img {
  opacity: 0;
}

.logo a:hover {
  border: 1px solid white;
  background-color: white;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 30px;
  align-items: center;
}
nav a {
  color: #ffffff;
  text-decoration: none;
  margin: 0 10px;
  padding-bottom: 5px;
  border-bottom: 2px solid transparent;
  transition: border-bottom-color 0.2s ease, font-style 0.2s ease;
}

nav a:hover {
  font-style: italic;
}

nav a.active {
  border-bottom-color: #ffffff;
}

.hero {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

.hero-text h1 {
  font-size: 2.5rem;
  margin: 0 0 20px 0;
  color: #ffffff;
}

.hero-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #cccccc;
  margin: 1.2rem 0;
}

.hero-text ul {
  list-style-type: square;
  margin: 0;
  padding-left: 1.5rem;
}

.hero-text li {
  margin: 1.2rem 0;
}

.hero-text a {
  color: #87CEEB;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Medium and large screens - 2 columns */
@media (min-width: 768px) {
  .hero-content {
    flex-direction: row;
    align-items: center;
    text-align: left;
  }

  .hero-text {
    flex: 1;
    padding-right: 40px;
  }

  .hero-image {
    flex: 1;
  }
} 

footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background-color: #111111;
  border-top: 1px solid #333333;
}
footer > a {
  color: #ffffff;
  text-decoration: none;
  margin: 0 10px;
}

footer > a img {
  height: 1.5rem;
  width: auto;
}
footer.links {
  font-size: 14px;
  background-color: #111111;
  border-top: 1px solid #333333;
  color: #ffffff;
}
#footer.copyright {
  float: right;
  font-size: 14px;
  background-color: #111111;
  border-top: 1px solid #333333;
}

@keyframes splashAnimation {
  0% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes logoAnimation {
  0% {
    width: 400px;
    transform: translate(0, 0);
  }
  90% {
    width: 40px;
    transform: translate(calc(-50vw + 50px), calc(-50vh + 35px));
  }
  100% {
    width: 40px;
    transform: translate(calc(-50vw + 50px), calc(-50vh + 35px));
    opacity: 0;
  }
}