
body {
    background-color: white;
    background-image: url('../graphics/html/craterlake.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: scroll;
}

body {
    width: 96%;
    min-height: 1075px;
}

.waitloader {
    border: 12px solid rgba(211, 211, 211, 1);
    border-top: 12px solid mediumblue;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 100px;
    height: 100px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {transform: rotate(0deg);}
    100% {transform: rotate(360deg);}
}

.header h1{
    font-family: "Paytone One", sans-serif;
    text-align: center;
    color: green;
    text-shadow: 3px 3px 3px rgba(0, 128, 0, 0.2);
}

.header a {
    font-family: "Bree Serif", sans-serif;
    float: right;
    color: green;
    padding: 5px;
    text-decoration: none;
}

.rightarrow {
    height: 20px;
    float: right;
    display: block;
    margin-top: 4px;
}

@media screen and (min-width: 935px) {
    .rightarrow{display: none;}
}

.bigagnes {
    clear: left;
    margin-right: 3%;
    margin-top: 3%;
    width: 25%;
    float: left;
    cursor: pointer;
}

.ot33 {
    clear: right;
    margin-left: 3%;
    margin-top: 3%;
    margin-bottom: 3%;
    width: 20%;
    float: right;
    cursor: pointer;
}

.jetsumo{
    margin-top: 5%;
    margin-left: 3%;
    margin-right: 3%;
    width: 15%;
    float: left;
    cursor: pointer;
}

.mtnvwt {
    margin-left: 3%;
    margin-top: 5%;
    width: 15%;
    float: right;
    cursor: pointer;
}

@media screen and (max-width: 1300px) {
    .bigagnes{width: 33%;}
    .ot33{width: 25%}
    .jetsumo{width: 20%}
    .mtnvwt{width: 20%}
    .para1{font-size: 22px;}
}

@media screen and (max-width: 900px) {
    .bigagnes{width: 40%;}
    .ot33{width: 30%}
    .jetsumo{width: 25%}
    .mtnvwt{width: 25%}
    .para1{font-size: 20px;}
}

@media screen and (max-width: 650px) {
    .bigagnes{width: 50%;}
    .ot33{width: 40%}
    .jetsumo{width: 30%}
    .mtnvwt{width: 30%}
    .para1{font-size: 18px;}
}

.para1 {
    font-family: 'Bree Serif', sans-serif;
    margin-top: 5%;
    font-size: 16px;
    margin-bottom: 15%;
}

.para2 {
    font-family: 'Bree Serif', sans-serif;
    margin-bottom: 15%;
    margin-top: 5%;
    font-size: 16px;
    display: none;
}

.para3 {
    font-family: 'Bree Serif', sans-serif;
    margin-bottom: 15%;
    margin-top: 5%;
    font-size: 16px;
    display: none;
}

@media screen and (min-width: 650px) {
    .para1{font-size: 18px; margin-bottom: 0;}
    .para2{font-size: 18px; margin-bottom: 15%; display: block;}
}

@media screen and (min-width: 900px) {
    .para1{font-size: 20px; margin-bottom: 0;}
    .para2{font-size: 20px; display: block; margin-bottom: 0;}
    .para3{font-size: 20px; display: block; margin-bottom: 15%;}
}

@media screen and (min-width: 1300px) {
    .para1{font-size: 22px; margin-bottom: 0;}
    .para2{font-size: 22px; display: block; margin-bottom: 0;}
    .para3{font-size: 22px; display: block; margin-bottom: 15%;}
}

.navbar {
    font-family: "Bree Serif", sans-serif;
    display: inline-block;
    justify-content: space-between;
    width: 100%;
}
/* Dropdown Menu */

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    white-space: nowrap;
    top: 40px;
    background-color: #e1e1e1;
    border-radius: 22px;
    color: black;
    width: auto;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 2;
}

.dropdown-content a {
    color: darkblue;
    margin: 10px;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown button {
    color: black;
    background-color: rgba(0, 0, 0, 0%);
    border: none;
    border-radius: 14px;
    cursor: pointer;
    font-size: 18px;
    margin: 5px;
    padding: 5px;
}

.dropdown button:hover {background-color: green; color: white;}

.dropdown-content a:hover {color: white; background-color: green; border-radius: 22px;}

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


.imgicon {
    height:64px;
}

/* On screens that are 992px wide or less, go from four columns to two columns */
@media screen and (max-width: 900px) {
    .imgicon {
        height:50px;
    }
}

/* On screens that are 600px wide or less, make the columns stack on top of each other instead of next to each other */
@media screen and (max-width: 526px) {
    .imgicon {
        height:36px;
    }
}

.footlink {
    position:fixed;
    bottom:-20px;
    left:0;
    background-color: white;
    z-index: 0;
    width:100%;
    height:64px;
    margin-bottom: 20px;
    border:none;
}

/* On screens that are 992px wide or less, go from four columns to two columns */
@media screen and (max-width: 900px) {
    .footlink {
        position:fixed;
        bottom:-20px;
        left:0;
        z-index: 0;
        width:100%;
        height:50px;
        border:none;
    }
}

/* On screens that are 600px wide or less, make the columns stack on top of each other instead of next to each other */
@media screen and (max-width: 526px) {
    .footlink {
        position:fixed;
        bottom:-20px;
        left:0;
        z-index: 0;
        width:100%;
        height:36px;
        border:none;
    }
}
