/*Browser Reset */
* {
    margin: 0;
    padding: 0;
    line-height: 1.6;
  }

  /*Global Styles*/
  html{
    font-family: 'Titillium Web', sans-serif;
  }

  body {
    background-color: #whitesmoke;
    color: black;
    opacity:0.9;
    text-align:center;
    line-height: 1.6;
  }

    /*Header Styles*/
    .masthead {
        height: 100px;
        width: 100%;
        z-index: 1;
        position: fixed;
        background-color: #de781f;
        border-bottom: 1px solid grey;
        display: flex;
        justify-content: space-around;
        align-items:center;
      }
      
      .masthead a{
        display: flex;
        flex-shrink: 0px;
      }

      .logo{
        height: 100px;
        width: auto;
      }
      
      .navigation li {
        list-style: none;
        display: inline-flex;
        flex-direction: column;
        flex-wrap: wrap;
        margin-right: 25px;
        
      
      }
      
      .navigation a {
        font-size: 3em;
        text-decoration: underline;
        color: whitesmoke;
        
      }
      
      .navigation a:hover{
        opacity:0.9;
        color: blue;
      }
    
        .bordertop{
        background-color: white;
        width: 100%;
        height: 100px;
    }

    /* INTRO STYLE */ 


  


  .welcome h1, p{
    padding: 10px;
  }
  .shoutout h2,h4{
    padding: 10px 0px;
  }

  /* link box styling */

  .links{
    display: flex;
    flex-wrap: wrap;
    justify-content:center;
    padding: 20px auto;
  }

  .button{
    background-color: white;
    height: 100px;
    width: 100px;
    border-radius: 20%;
    margin: 20px 35px;
    
 
  }

  .button a{
    text-decoration:none;
    color: black;
    opacity: 1;
    font-size: larger;
    font-weight:bold;
  }


  .button:hover{
    box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
  }

  /* GOAL PAGE */
.goalsection ul{
    display: flex;
    flex-direction: column;
    margin: 10px;
    background-color: lightskyblue;
}
.goalsection ul li{
    color: rgb(13, 110, 170);
    list-style: none;
    margin: 10px;
    font-size: 50px;
    background-color: white;
    opacity: 50%;

}

/* BIOPAGE SECTION */
.biopage{
    display: flex;
    margin: auto auto;
    justify-content: center;
    
}

.biopage img{
    margin: 10px; 
    min-width: 30%;
    min-height: 30%;
    max-width:40%;
    max-height:40%;
}

.biopage article{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    width: 250px;
    font-size: 25px;
}
  
/* HOMETOWN STYLING */
.citydescription{
    display:flex;
    flex-direction: column;
    margin: 50px 50px;
}
.hometownimages{
    min-width: 60%;
    min-height: 60%;
    max-width: 95%;
    max-height: 95%;
}

dt{
    font-size: 50px;
    font-weight: bold;
    margin: 20px 0px;
}

dd{
    font-size: 40px;
    margin: 20px 0px;
}
  
  /*Footer Styles */
  footer {
    padding:10px;
  }
  
  .contact {
    margin-top:20px;
    height:200px;
    width: auto;
    text-align:center;
  }

  .githublogo{
    width: 64px;
    height: 36px;
  }
  
  .copyright{
    margin: 20px;
    float: left;
  }