html{
    box-sizing: border-box;
}
body{
    background-color: whitesmoke;
    font-family: Roboto, "Helvetica Neue", Helvetica, sans-serif;
    font-size: 16px;
    font-weight: 200;
    width: auto;
}

h1,
h2 {
    font-weight: 200;
    font-family: "Open Sans", "Helvetica Neue", Roboto, Helvetica, sans-serif;
    text-decoration: underline;
}

h1{
    color:black;
    font-size:30px;
    font-variant: small-caps;
    text-align: center;
}

h2{
    font-size:24px;
    text-align: left;
}

/* --------Header Section CSS --------*/
.header{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px;
    gap: 16px;
    font-size: 24px;
    font-weight: 200;
    font-family: "Open Sans", "Helvetica Neue", Helvetica, sans-serif;
    font-variant: small-caps;
    text-decoration: underline;
}

/* Formatting for lists in header */
.header ul {
    /* Removes the dots on the list items */
    list-style-type: none;
    padding: 0px;
}

/* Formatting for Links in header */
.header a { 
    font-size: 24px;
    /* Removes color from header links */
    color: black; 
    /* Removes the line under the links */
    text-decoration: none;
}

.logo img{
    width: 100px;
    height: auto;
    border: 8px;
}

.left-links ul, 
.right-links ul{
    gap: 18px;
    display: flex;
}

.scenic-pictures img {
    /* border-radius Rounds corners */
    border-radius: 20px; 
    /* display: treats it as a block element */
    display: block; 
    /* auto margin sets both sides to fill up available space. Width sets picture to only take up 80 percent of vw */
    margin-right: auto;
    margin-left: auto; 
    width: 400px; 
   }

.nobullets {
    list-style: none;
    padding: 16px;
    }

.centered{
    text-align: center;
}

.mainBody{
    margin: auto;
    max-width: 700px;
    
}