@import url("https://fonts.googleapis.com/css2?family=Fira+Sans:wght@300;700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  font-size: 16px;
  margin-left: calc(100vw - 100%);
}
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-family: "Fira Sans";
  background-color: #fff;
  color: #000;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 500;
}

a {
  text-decoration: none;
}
.container a {
  color: #000099;
  text-decoration: underline;
}
a:visited {
  color: darkmagenta;
}
a:hover {
  color: cornflowerblue;
}

footer {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
footer ul {
  list-style-type: none;
  display: flex;
}
footer a {
  color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.75rem;
}
footer a:visited {
  color: #000;
}
footer a:hover {
  transition: 100ms linear;
  color: cornflowerblue;
}
footer i {
  font-size: 21px;
  width: 30px;
  padding: 0 0.35rem;
}

.navlogo a {
  font-family: "Fira Sans";
  color: #333;
  font-weight: 700;
  font-size: 1.75rem;
}
.navbox {
  padding: 2rem;
  display: inline-flex;
  justify-content: space-between;
  width: 100%;
}
.navbar {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.navbutton {
  padding-left: 1rem;
}
.navbutton a {
  color: #818181;
  font-size: 1.2rem;
  padding-bottom: 5px;
}

.navbutton a:hover {
  color: #333;
  color: cornflowerblue;
}
.active a {
  color: black;
  border-bottom: 3px solid black;
}
.container {
  display: grid;
  padding: 1rem;
  justify-items: center;
}
.body {
  max-width: 990px;
  margin: 0 auto;
}
img {
  max-width: 100%;
  height: auto;
}
p {
  font-size: 1rem;
  line-height: 1.5rem;
}
.hamburger {
  display: none;
}

@media only screen and (max-width: 600px) {
  .active a {
    color: black;
    border-bottom: none;
  }
  .navbox {
    display: grid;
    grid-template-columns: 1fr;
  }
  .navbar {
    display: none;
    visibility: hidden;
  }
  @keyframes growDown {
    0% {
      transform: scaleY(0);
    }
    100% {
      transform: scaleY(1);
    }
  }
  .visible {
    display: grid;
    grid-template-columns: 1fr;
    animation: growDown 150ms ease-in-out forwards;
    transform-origin: top center;
    visibility: visible;
    transform: scale(1);
  }
  article p {
    padding-left: 0;
  }
  footer ul {
    display: grid;
    grid-template-columns: 1fr;
    justify-content: left;
    justify-items: start;
    width: 100%;
    padding: 0;
  }
  footer li {
    padding: 0;
    width: 100%;
  }
  footer a {
    padding: 0.5rem 0;
    display: block;
    width: 100%;
    border-bottom: 1px solid #efefef;
  }
  footer a:target,
  a:active {
    background-color: #eee;
    transition: 100ms linear;
    border-radius: 3px;
  }
  footer {
    padding: 2rem;
  }

  header {
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
  .hamburger {
    background-color: transparent;
    border: none;
    cursor: pointer;
    display: block;
    outline: none;
  }
  .hamburger i {
    font-size: 30px;
  }

  .hamburger i:hover {
    color: cornflowerblue;
  }
  .navbutton a {
    display: block;
    width: 100%;
    line-height: 48px;
    font-size: 1.5rem;
  }
  .navbutton {
    padding-left: 0;
    border-bottom: 1px solid #efefef;
  }
}
@media screen and (max-width: 768px) {
  article {
    padding-top: 1.5rem;
  }
  .container {
    display: grid;
    grid-template-columns: 1fr;
  }
}

.fl a {
  text-decoration: none;
  color: black;
}

.tw {
  color: cornflowerblue;
}
