html{
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
    font-style: normal
}

#container{
    background-color: #C7C7C7;
    margin: 5% 20px 10% 20px;
    border-radius: 15px;
    padding-top: 5px
}

header{
    font-family: "Playfair Display", serif;
    font-weight: 400;
    font-style: normal
}

body{
    background-image: url("photos/foliage.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    margin: 0;
}

nav{
    background-color: #ACC9CA;
    overflow: hidden;
    height: 80px;
    position: sticky;
    top: 0;
    width: 100%;
    border-bottom: 5px solid #154747;
}

#navbar{
    margin: 20px
}

nav a{
    color: #154747;
    float: left;
    display: block;
    padding: 14px 16px;
    font-weight: bold;
    text-decoration: none
}

nav a:hover{
    color: white;
    text-shadow: 2px 2px 4px grey
}

#heading{
    margin: 5% 5% 5px 5%;
    font-size: 60px;
    display: inline-block
}

hr{
    border: none;
    height: 2px;
    float: left;
    width: 100%;
    background-color: #4A8787;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4)
}

#image{
    float: right;
    display: inline-block;
    margin: 5% 10px 10px 10px;
    height: 60%;
    width: 33%
}

#image img{
    box-shadow: 10px 10px 5px 0 rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 0, 0, 0.8);
    border-radius: 3px;
    height: 350px;
    width: 250px
}

#text_box{
    font-size: 20px;
    width: 450px;
    padding: 5px;
    display: inline-block;
    margin: 5px 5%;
    line-height: 1.6
}

figcaption{
    font-style: italic;
    margin-top: 10px
}

footer{
    color: black;
    background-color: #ACC9CA;
    margin: 0;
    width: 100%;
    position: absolute;
    box-shadow: 0 0 5px 5px rgba(255 255 255)
}

footer p{
    float: left;
    margin: 10px
}



