:root {
    font-size: 25px;
}

body {
    color: #ffff00;

    background-image: url(media/BGs/BackGround_HOME_darker.jpg);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;

    font-family: Helvetica, sans-serif;
}

.navbar {
            max-width: 90%;
            margin: 20px auto;
            text-align: center;
}

a {
  color: #19f9e2;
}

a:hover {
    color: #FFEF24;
}

a:visited:not(.button, .dropdown-content a) {
    color: rgb(251, 21, 255);
}

h1, h2, h3, h4 {
    margin-bottom: 10px;
    color: #7AFFA9;
}

h1, h2, h3 {
    text-align: center;
}

h1, h2, h3, h4, .navbar, .button, .dropdown-content a {
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

figcaption {
    text-align: center;
}

.box {
    background-color: #000000;
    border-color: #00ffff;
    background-size: 100% 100%;
    padding: 20px;
    margin: 0px 10%;
    border-style: solid;
    border-width: 1px;
}

/*incorrect*/
.box p {
    padding: 0px 20px;
}

.button {

    background-color: #000;
    color: #ffff00;
    border: 4px solid #ffff00;
    font-weight: bold;
    text-transform: uppercase;
    padding: 20px 50px;
    font-size: 1.6rem;
    border: outset;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    margin: 0px 0px;
    cursor: pointer;
}

.button1:hover {
    color: #7AFFA9;
}

.current {
    color: #000;
    background-color: #ffff00;
    text-decoration: underline overline !important;
}

.current:hover {
    color: #0000ff;
    background-color: #ffff00;
    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;
    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: #FFEF24;
    padding: 12px 30px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    color: #7AFFA9;
    background-color: #034958;
    /*  old settings
    color: #FFEF24;
    background-color: #135249;
    */
}

.dropdown:hover .dropdown-content {
    display: block;
}

.skiplink {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}