@font-face {
  font-family: Inknut Antiqua;
  src: url(https://fonts.adobe.com/fonts/inknut-antiqua?referrer=96caf89a5a#access_token=eyJhbGciOiJSUzI1NiIsIng1dSI6Imltc19uYTEta2V5LWF0LTEuY2VyIiwia2lkIjoiaW1zX25hMS1rZXktYXQtMSIsIml0dCI6ImF0In0.eyJpZCI6IjE3MTY5ODc5NjU0ODRfODRiNjc3MzQtZTMxMS00YTE0LWFhZDUtMGI0OGY0NDIzNWYwX3ZhNmMyIiwidHlwZSI6ImFjY2Vzc190b2tlbiIsImNsaWVudF9pZCI6IlR5cGVLaXQyIiwidXNlcl9pZCI6IjMxMDQxRDY4NjU2QUVFRkEwQTQ5NUNGREAyZmQ0MWQ3ZTY1NmFlZTZmNDk1YzNkLmUiLCJhcyI6Imltcy1uYTEiLCJhYV9pZCI6Ijc3RjY0MDFGNjRCMDNGQzcwQTQ5NUMwQUBzbHV6LmNoIiwiY3RwIjowLCJmZyI6IllQU0ZEQ0pNRlBQNU1GV0tGT1FWWUhBQUdFPT09PT09Iiwic2lkIjoiMTcxNjk4Nzg0OTQxMF85MDkwN2IxYi1hMzQzLTQyNGQtOTliMC1mM2U1YWUzZDczNTBfdmE2YzIiLCJtb2kiOiI0M2Q0OGQ5ZiIsImV4cGlyZXNfaW4iOiI4NjQwMDAwMCIsImNyZWF0ZWRfYXQiOiIxNzE2OTg3OTY1NDg0Iiwic2NvcGUiOiJjcmVhdGl2ZV9jbG91ZCxzYW8udHlwZWtpdCxvcGVuaWQifQ.ANUlRGz6BsqSO4fx0BNJmoYqJI62gh70sZkzXCsJOO6pllW-rQMt09GfkWIsW2rMc-KFYC3gFhd5L-ehJsDe9yiYfv-eINUZ9l_Kf6RVbwpco2zM94LCm0GCq6ElNOU-fhqOTg5_Qq69rzulWbtPBBev4KIQCmmXXQPrhe8d7hTis6erZcxa02GTe39vn2y9-oY2VRyT1dM4s06c0_sOugRE6f1N6yMnRzHu_N9jx_9d7bZxWMAiFLa5w4qQe8Qp9P4yq2R5gVv_Jf5CjnVnHDZ1PMTplTFmkkXNcDAlD0z31MvN3JjoDYT5FxIcAjEEGZRoXwLKwjsXDmTlcytqIw&token_type=bearer&expires_in=86399995);
}
body {
  background-image: url("../imgs/grass.jpeg");
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  border: 0px;
  margin: 0px;
}
main {
  background-color: #ffffff;
  border: 2px solid #000000;
  width: 60%;
  text-align: center;
  height: 100%;
}
.clear {
  background-color: #aaccee;
  opacity: 50%;
  width: 20%;
}
img {
  width: 25%;
  margin-left: 50px;
  height: 30%;
}
.clear img {
  margin: 0px;
}
ul {
  padding: 0px;
}
.flex-box {
  display: flex;
  height: 100%;
  align-content: space-between;
}
#aboutme-flex-box {
  display: flex;
  column-gap: 100px;
  align-content: space-between;
}
header {
  background-color: #46b344;
  padding: 0px;
  margin: 0px;
  text-align: center;
}
nav {
  background-color: #d9d9d9;
  padding: 1px;
  margin: 0px;
  display: flex;
  justify-content: space-evenly;
  opacity: 85%;
}
#myLinks {
  display: flex;
}
nav > a {
  display: none;
}
h1 {
  font-size: 32px;
  font-weight: medium;
  font-family: Inknut Antiqua;
  margin: 0px;
}
h2 {
  font-size: 24px;
  font-weight: bold;
  font-family: Inknut Antiqua;
}
h3 {
  font-size: 16px;
  font-weight: medium;
  font-family: Inknut Antiqua;
}
p {
  font-size: 14px;
  font-family: Inknut Antiqua;
  margin: 10px;
}
a p{
  border: 0px;
  margin: 0px;
}
footer {
  background-color: #46b344;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}
a.button {
  padding: 5px 40px;
  color: buttontext;
  text-decoration: none;
  background-color: #d9d9d9;
  opacity: 85%;
}
a:link {
  color: #000000;
  text-decoration: none;
}
a:visited {
  color: #290067;
  text-decoration: none;
}
a:hover {
  color: #000000;
  text-decoration: underline;
}
a:active {
  color: #f08080;
  text-decoration: underline;
}
.underlined {
  text-decoration: underline !important;
}
#secretlink {
  position: fixed;
  bottom: 20px;
  left: 50px;
  opacity: 1%;
}
#sourcesbtn {
  height: 100%;
  padding: 0px;
  background-color: #46b344;
}
/*testing bellow*/
#grid-container {
  display: grid;
  gap: 10px;
  height: 100%;
  width: 100%;
  grid-template-areas:
    "blu reed"
    "gren yellu";
}
#grid-item1 {
  align-content: center;
  text-align: center;
  grid-area: blu;
}
#grid-item2 {
  align-content: center;
  text-align: center;
  grid-area: reed;
}

#grid-item3 {
  align-content: center;
  text-align: center;
  grid-area: gren;
}

#grid-item4 {
  align-content: center;
  text-align: center;
  grid-area: yellu;
}
/*testing above*/
@media only screen and (max-width: 768px) {
  .clear {
    width: 14%;
  }
  main {
    width: 72%;
  }
  #interp-grid-container {
    display: block;
  }
}
@media only screen and (max-width: 600px) {
  h1 {
    font-size: 24px;
  }
  h2 {
    font-size: 16px;
  }
  h3 {
    font-size: 13px;
  }
  p {
    font-size: 12px;
  }
  /*put the button navigation here*/
  nav {
    justify-content: flex-start;
  }
  nav > a {
    display: block;
    padding-left: 10%;
    padding-top: 3px;
  }
  nav #myLinks {
    display: none;
  }
  #myLinks a {
    display: block;
    padding-left: 20px;
  }
}

