html,
body {
  margin: 0;
  height: 100%;
  width: 100%;
  background-color: #8f6e49;
  font-family: "Red Hat Display", sans-serif;
  color: white;
}

.navbar {
  display: flex;
  height: 100px;
  width: 100%;
  margin: 0;
  padding: 0;
  background-color: #af8c64;
}

.head-text {
  justify-self: flex-start;
  margin-left: 20px;
  font-size: 20px;
  font-family: "Pinyon Script", cursive;
}

.nav {
  display: flex;
  margin-left: auto;
  margin-right: 20px;
  align-items: center;
  gap: 80px;
}

.nav a {
  text-decoration: none;
  font-size: 25px;
  color: white;
  font-weight: bold;
}

.nav a:hover {
  transition: 0.3s ease-in-out;
  color: rgba(218, 135, 12, 0.7);
  font-size: 28px;
}


.title {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.title h1 {
    font-size: 80px;
    text-decoration: 5px solid black underline;
}

.source {
    margin: 200px 20px;
    margin-top: 0;
}

.source h1 {
    font-size: 50px;
}

.source a {
     color: #ffcc00; /* Example: gold */
  font-size: 20px;
  text-decoration: underline; /* classic link look */
  transition: color 0.2s;
  transition: ease-in-out 0.2s;
    
}

.source a:hover {
  color: #ffbb00;
  font-size: 22px;
}

.source-container {
    padding-bottom: 60px;
}   

footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 30px;
  display: flex;
  align-items: center;
  border-top: 2px solid black;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 3; /* ABOVE overlay and background */
}


#footer-r {
  margin-left: auto;
  margin-right: 20px;
}

#footer-l {
  margin-left: 20px;
}

footer a {
  text-decoration: none;
  color: white;
  font-weight: bold;
}


@media (max-width: 900px) {

    .navbar {
        height: 120px;
        flex-direction: column;
    }
    
    .head-text {
        font-size: 15px;
        margin: auto;
          margin-top: 5px;
          text-align: center;
          margin-bottom: 0;
    }

    .nav {
      margin: 0px 0px;
      gap: 40px;
      justify-content: center;
    }
    .nav a {
        font-size: 20px;
    }

    .nav a:hover {
      font-size: 22px;
    } 

    .title h1 {
      font-size: 45px;
    }
    .source {
        margin: 150px 20px;
        margin-top: 50px;
    }

    .source h1 {
     font-size: 30px;
    }

    .source a {
      font-size: 18px;
    }

    footer {
     display: none;
    }
}