body {
    margin: 0;
    font-family: Verdana, sans-serif;
    font-size: 14px;
    background: #1e0320;
}

* {
    box-sizing: border-box;
}

/*   --   TOP NAV BAR section   --  */
/* Add a black background color to the top navigation */
.topnav {
    overflow: hidden;
    background-color: #333;
}
    /* Style the links inside the navigation bar */
    .topnav a {
        float: left;
        display: block;
        color: #5ce353;
        text-align: center;
        padding: 14px 14px;
        text-decoration: none;
        font-size: 14px;
    }
/* Add an active class to the active dropdown button */
.active {
    background-color: rgb(255 228 153 / 0.25);
    color: darkorange;
}
/* Hide the link that should open and close the topnav on small screens */
.topnav .icon {
    display: none;
}
/* Dropdown container - needed to position the dropdown content */
.dropdown {
    float: left;
    overflow: hidden;
}
    /* Style the dropdown button to fit inside the topnav */
    .dropdown .dropbtn {
        font-size: 14px;
        border: none;
        outline: none;
        color: #5ce353;
        padding: 14px 16px;
        background-color: inherit;
        font-family: inherit;
        margin: 0;
    }
/* Style the dropdown content (hidden by default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #1e0320;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}
    /* Style the links inside the dropdown */
    .dropdown-content a {
        float: none;
        color: #5ce353;
        padding: 12px 16px;
        text-decoration: none;
        display: block;
        text-align: left;
    }
/* Add a dark background on topnav links and the dropdown button on hover */
.topnav a:hover, .dropdown:hover .dropbtn {
    background-color: #555;
    color: white;
}
/* Add a grey background to dropdown links on hover and white text   */
.dropdown-content a:hover {
    background-color: #555;
    color: white;
}
/* Show the dropdown menu when the user moves the mouse over the dropdown button */
.dropdown:hover .dropdown-content {
    display: block;
}
/* Optional: Style the caret down icon */
.fa-caret-down {
    float: right;
    padding-right: 8px;
}
/*   --   TOP NAV BAR section   --  */


/*    Main Content  */
.contentsl {
    margin: 25px;
    font-family: Verdana, sans-serif;
    padding: 25px;
    min-height: 150px;
}

    .contentsl H1 {
        font-size: 14px;
        color: #66e716e0;
    }

    .contentsl H2 {
        font-size: 12px;
        color: #5ce353;
    }

    .contentsl H3 {
        font-size: 12px;
        color: #53c2e3;
    }

    .contentsl H10 {
        font-size: 24px;
        color: #66e716e0;
    }

    .contentsl H11 {
        font-size: 16px;
        color: #66e716e0;
    }

    .contentsl H12 {
        font-size: 14px;
        color: #66e716e0;
    }


/*   Links hovering over etc   */
a:link {
    color: springgreen;
    background-color: transparent;
    text-decoration: none;
}

a:visited {
    color: lawngreen;
    background-color: transparent;
    text-decoration: none;
}

a:hover {
    color: blueviolet;
    background-color: transparent;
    text-decoration: underline;
}

a:active {
    color: yellow;
    background-color: transparent;
    text-decoration: underline;
}


/*  FOOTER of page with AMoC copyright  */
.footer {
    color: greenyellow;
    clear: both;
    border: 2px dotted #005500;
    padding: 1em;
    padding-top: 5px;
    text-align: center;
    margin-top: 5px;
    font-size: 11px;
}


/*  - -  SLIDESHOW TEST  - -  */

#slider-1 .slide-container {
    width: 600px;
    height: 250px;
}

.slider {
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
}

.slide-container {
    max-width: 100%;
    display: inline-block;
    position: relative;
}

.slides {
    display: none;
    text-align: center;
    overflow: hidden;
}

    .slides img {
        max-width: 100%;
        max-height: 100%;
        display: inline-block;
        border-radius: 5px;
        border: solid 1px #a0a0a0;
        vertical-align: middle;
    }

/************CSS Animation***********/

.animated {
    animation-name: foolishIn;
    animation-duration: 5s;
}

@keyframes foolishIn {
    0% {
        opacity: 0;
        transform-origin: 50% 50%;
        transform: scale(0, 0) rotate(360deg);
    }

    20% {
        opacity: 1;
        transform-origin: 0% 100%;
        transform: scale(0.5, 0.5) rotate(0deg);
    }

    40% {
        opacity: 1;
        transform-origin: 100% 100%;
        transform: scale(0.5, 0.5) rotate(0deg);
    }

    60% {
        opacity: 1;
        transform-origin: 50% 50%;
        transform: scale(0.5, 0.5) rotate(900deg);
    }

    80% {
        opacity: 1;
        transform-origin: 0% 0%;
        transform: scale(0.5, 0.5) rotate(0deg);
    }

    100% {
        opacity: 1;
        transform-origin: 50% 50%;
        transform: scale(1, 1) rotate(0deg);
    }
}

.foolishIn {
    animation-name: foolishIn;
}


/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
    .text {
        font-size: 11px
    }
}
