@import url(https://fonts.googleapis.com/css?family=Montserrat:100,200,300,regular,500,600,700,800,900&display=swap);

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Montserrat', sans-serif;
  background-color: #000;
  color: #fff;
}
h2 {
  color: #6ec1e4;
  font-size: 30px;
}
strong {
  font-weight: 600;
}
.container {
  max-width: 90vw;
  margin: 0 auto;
}
p {
  margin-bottom: 15px;
  line-height: 150%;
}
table {
  border-collapse: collapse;
  width: 100%;
  margin: 20px 0;
  overflow-x: auto;
}
table thead tr td {
  background-color: #6ec1e4;
  color: #000;
}
table tr td {
  border: 1px solid #6ec1e4;
  padding: 15px;
}
.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 90vh;
}
.wrapper .nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 1rem;
}
.wrapper .nav li a {
  color: #fff;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}
.wrapper .nav li a:hover {
  color: #6ec1e4;
}
.header {
  padding: 20px 0;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  background-color: #021d33;
}
.header .header__logo img {
  max-width: 150px;
}
.header .header__burger {
  display: none;
}
.header .container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}
.header .nav {
  flex: 1;
}
.header .header__logo {
  position: relative;
  z-index: 3;
}
.main {
  flex: 1 1 auto;
  padding: 50px 0;
}
.main .container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.main .author {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 1rem 0.5rem;
  border-radius: 20px;
  border-bottom: 1px solid #2b2b2b;
}
.main .author .author__info {
  position: relative;
}
.main .author .author__name {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}
.main .author .modal {
  display: none;
  gap: 1rem;
  position: absolute;
  width: 100%;
  top: 50px;
  padding: 1rem;
  background: #111;
  color: #fff;
  border: 1px solid #6ec1e4;
  border-radius: 10px;
  z-index: 98;
}
.main .author .modal .modal__header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 10px;
}
.main .author .modal .modal__header p {
  margin: 0;
}
.main .author .modal .modal__header .bio-name {
  font-size: 14px;
  color: rgb(216, 216, 216);
}
.main .author .modal .modal__header .bio-title {
  font-size: 12px;
  color: rgb(216, 216, 216);
}
.main .author .author__name img {
  width: 30px;
}
.content {
  width: 100%;
  margin: 30px 0;
}
.green {
  color: #6ec1e4;
}
.footer {
  background-color: #021d33;
  padding: 30px 0;
}
.footer .footer__logo img {
  max-width: 150px;
}
.footer .container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.footer .container .flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}
.footer p {
  margin: 0;
  font-size: 14px;
  color: gray;
  text-align: center;
}
.footer .list {
  display: flex;
  align-items: flex-start;
  justify-content: space-around;
}
.footer .list .nav {
  display: flex;
  flex-direction: column;
}
.footer .flex.icons {
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}
.footer .flex.icons img {
  height: 20px;
}

@media (max-width: 768px) {
  h1 {
    font-size: 28px;
  }
  table {
    display: block;
  }
  .header .header__burger {
    display: block;
    position: relative;
    width: 30px;
    height: 20px;
    cursor: pointer;
    z-index: 5;
  }
  .header .header__burger span,
  .header .header__burger:after,
  .header .header__burger:before {
    position: absolute;
    background-color: #6ec1e4;
    left: 0;
    width: 100%;
    height: 2px;
    transition: all 0.3s ease;
  }
  .header .header__burger:after,
  .header .header__burger:before {
    content: '';
  }
  .header .header__burger:before {
    top: 0;
  }
  .header .header__burger:after {
    bottom: 0;
  }
  .header .header__burger span {
    top: 9px;
  }
  .header .header__burger.active:before {
    transform: rotate(45deg);
    top: 9px;
  }
  .header .header__burger.active span {
    transform: scale(0);
  }
  .header .header__burger.active:after {
    transform: rotate(-45deg);
    bottom: 9px;
  }
  .header .container {
    justify-content: space-between;
  }
  .header .nav {
    display: none;
  }
  .header .nav.active {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: fixed;
    top: 0;
    left: 0;
    justify-content: flex-end;
    align-items: flex-start;
    width: 100%;
    height: 250px;
    background-color: rgb(0, 0, 1);
    padding: 1rem 0 1rem 1rem;
  }
  .main .author {
    flex-direction: column;
    gap: 1rem;
  }
}
