body {
    background-image: url(media/BGs/BackGround_HOME.jpg);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: 100%;
    background-position: center;
}

nav {
    max-width: 1200px;
    margin: 20px auto;
    text-align: center;
}

h1, h2, h3, h4 {
    margin-bottom: 10px;
}

h1, h2, h3 {
    text-align: center;
}

figcaption {
    text-align: center;
}

.box {
    background-image: url(media/BGs/parchment_hor.png);
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-size: 100% 100%;
    padding: 20px 60px;
    margin: 0px 5px;
}

.box.long {
    background-image: url(media/BGs/parchment_ver_squashed2.png);
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-size: 100% 100%;
    padding: 80px 60px;
    margin: 0px 5px;
}

/*incorrect*/
.box p {
    padding: 0px 20px;
}
/*
ul {
    color: white;
}
*/

.button {
    border: outset;
    border-width: 6px 5px 6px 5px;
    border-color: #97bfb1 #648e89 #34665f #34665f;
    color: #FFEF24;
    /*color: #ffda4c;*/
    padding: 15px 40px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 22px;
    margin: 0px 0px;
    cursor: pointer;
}

.button1 {background-color: #506d6b;} /* default */

.button1:hover {
    color: #7AFFA9;
    background-color: #034958;
/*
    color: #ffd329;
    background-color: #135249;
    */
}

.current {
    color: #ffd329;
    background-color: #135249;
/*
    color: #7AFFA9 !important;
    background-color: #034958;
    */
    text-decoration: underline overline !important;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    border: outset;
    border-width: 4px 5px 4px 5px;
    border-color: #97bfb1 #648e89 #34665f #34665f;
    display: none;
    position: absolute;
    background-color: #506D6B;
    color: #FFEF24;
    /*
    background-color: #5d7e74;
    color: #ffd700;
    */
    min-width: 100px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    padding: 0px 0px;
    cursor: pointer;
    z-index: 1;
}

.dropdown-content a {
    color: #ffd700;
    padding: 12px 30px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    color: #7AFFA9;
    background-color: #034958;
    /*
    color: #ffd329;
    background-color: #135249;
    */
}

.dropdown:hover .dropdown-content {
    display: block;
}



