/* Reset default styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Body styles */
body {
  font-family: Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  background-color: black;
  opacity: 0;
  animation: fadeIn 2s forwards;
}

/* Header styles */
header {
  background-color: #333;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0rem;
  opacity: 1;
}

nav {
  display: flex;
  align-items: center;
  height: 100%;
}


nav img {
  height: 65px;
  margin-right: 1rem;
}

nav ul {
  list-style: none;
  display: flex;
}

nav li {
  display: inline;
  margin-left: 1rem;
}

nav a {
  color: #fff;
  text-decoration: none;
  padding: 0.25rem;
  border-radius: 4px;
}

nav a:hover {
  background-color: #fff;
  color: #333;
}

/* Main styles */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
}

h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
}

ul {
  margin-bottom: 1rem;
  columns: 2;
}

li {
  list-style: disc;
  margin-left: 1rem;
  margin-bottom: 0.5rem;
}


#hero {
  background: rgb(220, 220, 220);
  padding: 4rem;
  position: relative;
}

#hero:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(220, 220, 220);
  pointer-events: none;
  z-index: 1;
}

#hero:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgb(224, 224, 236);
  pointer-events: none;
  z-index: 1;
}

#hero .container {
  position: relative;
  z-index: 2;
}


@media screen and (max-width: 768px) {
  nav {
    flex-direction: column;
    align-items: flex-start;
  }

  nav img {
    margin-bottom: 1rem;
  }

  nav ul {
    margin-top: 1rem;
  }

  nav li {
    margin: 0;
  }
}
footer {
  text-align: center;
  margin-top: 0rem;
  padding: 0rem;
  background-color: #333;
  color: #fff;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
