header {
  background-color: #080808;
  text-align: center;
  opacity: 0.8;
  padding: 1em 0;
  border-radius: 16px;
}

nav ul {
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 1em;
  padding: 0;
  list-style: none;
}

nav ul li {
  display: inline;
  margin: 0;
}

@media (max-width: 1000px) {
  nav ul {
    flex-direction: column; 
    gap: 0.5em; 
    align-items: center; 
  }
}

nav ul li a {
  text-decoration: none;
}

main {
  background-color: #080808;
  padding: 2em;
  margin: 5em auto;
  margin-bottom: 20em;
  border-radius: 16px;
  opacity: 0.8;
  max-width: 800px;
}

* {
  font-family: Josefin Sans;
  color: white;
}

html {
  height: 100%;
  background-color: white;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-image: url("/png/background.png");
}

body {
  padding-bottom: 1em;
  box-sizing: border-box;
}

.link {
  color: #0000EE;
}

.link:visited {
  color: #551A8B;
}

table,img {
  width: 100%;
}

.h3-style {
  font-size: 1.17em;
  font-weight: bold;
  margin: 0;
  display: inline;
}