/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

html {
  --accent-color: rgb(3, 147, 244);
  --accent-color-darker: rgb(2, 86, 143);
  --accent-color-lighter: rgb(6, 255, 255);
}

/* BASE STYLES */
body {
  background-color: #e8f0f7;
  font-family: 'Lato', sans-serif;
  padding-top: 60px;
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/* NORMAL STYLES */
.header {
  position: fixed;
  top: 0px;
  width: 100%;
}

/* .top-bar {
  background-color: rgb(39, 44, 51);
}

.top-bar__content {
  height: 30px;
  max-width: 1200px;
  padding: 0 30px;
  margin: 0 auto;
  display: flex;
  justify-content: end;
  align-items: center;
  column-gap: 20px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
} */

.icon {
  margin-right: 3px;
  color: rgba(255, 255, 255, 0.17);
}

.bottom-bar {
  background-color: var(--accent-color);
}

.bottom-bar__content {
  min-height: 60px;
  max-width: 1200px;
  padding: 0 30px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo {
  vertical-align: middle;
  display: flex;
  column-gap: 10px;
  align-items: center;
}

.logo__img {
  height: 30px;
}

.logo__text {
  font-size: 36px;
  font-weight: bold;
  color: #fff;
  font-variant: small-caps;
}

.nav {
  transition: all 0.3s ease-in-out;
}

.nav__list {
  display: flex;
  column-gap: 14px;
  font-size: 12px;
}

/* .nav__item {} */

.nav__link {
  color: rgba(255, 255, 255, 0.75);
  transition: all 0.2s;
}

.nav__link:hover {
  /* .nav__link:focus  */
  color: rgba(255, 255, 255, 1);
}

/* .btn {
  color: #fff;
  background-color: #0071e3;
  padding: 8px 20px;
  border-radius: 1000px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
} */

/* .btn:hover {
  background-color: rgb(28, 128, 228);
} */

.hamburger {
  cursor: pointer;
  display: none;
}

.bar {
  height: 2px;
  width: 27px;
  background-color: #fff;
  margin: 5px 0;
  opacity: 0.8;
  transition: all 0.3s ease-in-out;
}

/* For JS */
.nav--open {
  left: 50% !important;
}

.hamburger--open .bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger--open .bar:nth-child(2) {
  opacity: 0;
}

.hamburger--open .bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.main {
  background-color: #eee;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
}

table{
  max-width: 500px;
  background-color: var(--accent-color-lighter);
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
}

th{
  text-align: left;
  background-color: var(--accent-color-darker);
  color: #fff;
}

table,
th,
td{
  border: 1px solid black;
  border-collapse: collapse;
}

  table,
th,
td{
  border: 1px solid black;
  border-collapse: collapse;
}


th,
td {
  padding: 5px;
}


.kop {
  background-color: var(--accent-color);
  max-width: 1200px;
  font-size: 36px;
  text-align: center;
  color: rgb(248, 149, 122);
  font-variant: small-caps;
}

.logo__text{
  text-align: center;
  padding-bottom: 10px;
}

.trimester {
  width: 1200px;
  font-size: 24px;
  color: black;
}

.img-cover {
  height: 220px;
  float: left;
  padding: 10px;
}

p {
  text-indent: 20px;
  font-size: 14px;
  text-align: justify;
  line-height: 14px;
  padding: 5px 10px;
}

.footer {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  font-style: italic;
  margin-top: 10px;
  text-indent: 30px;
  font-size: 20px;
  text-align: justify;
  border: 2px solid black;
  border-radius: 3px;
  background-color: var(--accent-color-lighter);
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 14px;
}

/* MEDIA QUERIES */
@media (max-width: 650px) {
  /* .header{
      display: flex;
      flex-wrap: wrap;
    } */
  .nav {
    position: fixed;
    top: 60px;
    left: -100%;
    transform: translateX(-50%);
    background-color: var(--accent-color-darker);
    width: 100%;
    padding: 10px 0 25px;
  }

  .nav__list {
    flex-direction: column;
    align-items: center;
    row-gap: 10px;
  }

  .nav__link {
    font-size: 14px;
  }

  /* .logo{
    display: flex;
    flex-wrap: wrap;
  } */

  .btn {
    font-size: 11px;
    padding: 7px 17px;
  }

  .hamburger {
    display: block;
  }
}

/* .bottom-bar__content{

} */

@media (max-width: 360px) {
  .top-bar__content {
    font-size: 10px;
  }
}