body
    {
        background-color:whitesmoke;
        border:5px inset rgba(0, 0, 0, 0.25);
        font-family:'Lato',sans-serif; 
        padding-left:2px
}


h1
    {
        text-align:center;
        margin-left:18px;
        font-size:30px; 
        font-weight:bold;
        color:#6d7171;  
}


h2
    {
        text-align:center; 
        margin-top:50px;
        margin-bottom:-10px;
        margin-left: 18px;
        margin-right: 18px;
        font-size:32px;
        font-weight:normal;
        color:#9bb456;
}


h3
    {
        text-align:center;
        font-size: 28px; 
        font-weight:normal;
        color:#6d7171;
}


h4 
    {
        text-align:left;
        margin-right:600px;
}


p
    {
        text-align:left; 
        font-size: 20px; 
        color:#6d7171;
        font-weight:normal;
        margin-left:20px;
        margin-right:20px;
}


a
    {
        text-align:center;
        font-size: 18px;
        text-decoration:none;
        margin-left:45px;
        margin-right:45px;
        font:bold;
}
a:link 
    {
        color:darkslategray;
}
a:hover, a:active 
    {
        text-decoration: underline;
        color:#ffff83;
} 
a:visited 
    {
        color:#9bb456;
}


img
    {
        display: block;
        margin: auto;
        width: 60%;
        vertical-align: middle
}


header 
    {
        box-sizing:border-box;
        box-shadow:rgba(0, 0, 0, 0.25);
        background-color:whitesmoke;
        margin:1px;
        padding:1px;
        width: 40%;
}


ul {
    list-style-type: circle;
    margin: 8;
    padding: 12;
    overflow: hidden;
    background-color: whitesmoke;
}


li {
    float:left;
}

li a, .dropbtn {
    display: inline-block;
    color: whitesmoke;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

li a:hover, .dropdown:hover .dropbtn {
    background-color: #ccccc1;
}

li.dropdown {
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 160px;
    box-shadow: 0px 8px 12px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.dropdown-content a:hover {background-color: #ffff83}

.dropdown:hover .dropdown-content {
    display: block;
}