header, .uwofont {
  font-family: "Open Sans",Arial,sans-serif;
  font-weight: 600;
}

body {
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 100px;
    font-family: "Open Sans", sans-serif;
}

header {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: space-around;
    background-color: #fc0;
    padding: 0;
    padding-bottom: 10px;
}

header a:link, header a:visited, header a:active, header a:hover {
  color: black;
  text-decoration: none;
}

main {
    margin-left: 10px;
    margin-right: 10px;
}

#schoollogo {
    height: 100%;
    top: 0;
}

#title > p {
    font-size: 18pt;
    text-align: center;
}

#smalltitle {
    display: none;
}

nav > ul {
    display: flex;
    list-style: none;
    justify-content: space-around;
    align-items: center;
    height: 100%;
    flex-grow: 1;
    padding-left: 5px; /* ul has left padding by default, this resets it */
    padding-right: 5px;
    margin: 0 ;
}

nav {
    flex-grow: 1;
}

nav li {
  display: inline;
    font-size: 14pt;
    flex-grow: 1;
    text-align: center;
}

nav li {
  float: left;
}

nav li a {
  display: block;
  padding: 24px;
}

nav li:hover a {
    color: grey;
  
}

#schoollogo {
    width: 200px;
}

#headshot {
    width: 350px;
}

/* Display the weather at the bottom right > */
#weather_display {
    margin: 10px;
    border: 1px solid black;
    border-radius: 5px;
    padding: 5px;
}

@media screen and (max-width: 860px) {
    nav > ul {
        flex-direction: column;
    }

    nav li a {
      padding-bottom: 10px;
      padding-top: 10px;
    }
}

@media screen and (max-width: 680px) {
    #smalltitle {
        display: block;
    }

    #bigtitle {
        display: none;
    }

    nav {
        flex-grow: 0;
    }
}

@media screen and (max-width: 500px) {
    #schoollogo {
        display: none;
    }
}

footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    margin-top: 50px;
    background-color: #fc0;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
 }

 .button:hover {
 /* Make the cursor into a clickable link */
    cursor: pointer;
 }