@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
.nav-links{
  margin-left: auto;
  margin-right: 8%;
}
small{
    display: block;
    margin-top: 15px;
}
footer{
  height: 100px;
  background-color: #93C193;
  font-size: 18px;
  padding: 3%;
  color: white;
  font-family: "Inter", sans-serif; /* This is imported from Google Fonts */
  text-align: center;
}
footer .left_anchor{ /* Furthest left anchor has 10% margin left to line up with main content */
  margin-left: 8%;
}
footer .right{ /* Furthest right anchor has 10% margin left to line up */
  margin-right: 8%;
}
footer a{
  color: #f2f2f2;
  display: inline-block;
  text-decoration: none;
  text-align: center;
  text-decoration: none;
  font-size: 17px;
  font-family: "Inter", sans-serif;
  margin: 0 15px; /* adds space left & right of each link */
}
footer p{
  font-size: 18px;
  margin-left: 8%;
}
footer a:hover {
  background-color: #ddd;
  color: black;
}
footer a.active {
  background-color: #284868;
  color: white;
}
footer a.active:hover{
  background-color: #ddd;
  color: black;
}
.topnav {
  display: flex;
  align-items: center;
  background-color: #93C193;
}
.topnav a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 22px 16px;
  text-decoration: none;
  font-size: 17px;
  font-family: "Inter", sans-serif;
  margin-right: 15px;
}
.topnav a:hover {
  background-color: #ddd;
  color: black;
}
.topnav a.active {
  background-color: #284868;
  color: white;
}
.topnav a.active:hover{
  background-color: #ddd;
  color: black;
}
.topnav .icon {
  display: none;
}
body{
    background-color: #453724;
}
.topnav img{/*styling for the logo on the left of navbar*/
    float: left;
    height: 60px;
    width: auto;
    padding: 1px 0px;
    margin-left: 15px;
    margin-right: 30px;
}
.main_content{
    width: 80%;
    text-align: justify;
    box-sizing: border-box;
    overflow: hidden;
    margin: 20px auto;
    padding: 20px;
    background-color: #F7DCA1;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    border-radius: 5px;
}
h1,h4{
    font-family: Archivo Black;
    color: #5E121F;;
}
p{
    font: 200 16px Inter;
    color: #5E121F;
}
.parallax {
  background-image: url("images/lifting_weight.jpg"); /* The image used */
  min-height: 500px; /* Set a specific height */
  background-attachment: fixed; /* Create the parallax scrolling effect */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width:768px){
    .topnav a:first-of-type{
        margin-top: 60px;
    }
    .main_content{
        width: 95%;
    }
}