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  - -  */

/** {
    box-sizing: border-box;
}

body {
    font-family: Verdana, sans-serif;
}
*/
.mySlides {
    display: none;
}

img {
    vertical-align: middle;
}

/* Slideshow container */
.slideshow-container {
    max-width: 1200px;
    position: page;
    margin: auto;
}

/* Caption text */
.text {
    color: #f2f2f2;
    font-size: 15px;
    padding: 8px 12px;
    position: absolute;
    bottom: 8px;
    width: 100%;
    text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
    color: #f2f2f2;
    font-size: 14px;
    padding: 8px 12px;
    position: static;
    top: auto;
}

/* The dots/bullets/indicators */
/*.dot {
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}
*/
.active {
    background-color: #717171;
}

/* Fading animation */
.fade {
    -webkit-animation-name: fade;
    -webkit-animation-duration: 3.5s;
    animation-name: fade;
    animation-duration: 3.5s;    
}

@-webkit-keyframes fade {
    from {
        opacity: .1
    }

    to {
        opacity: 1
    }
}

@keyframes fade {
    from {
        opacity: .1
    }

    to {
        opacity: 1
    }
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
    .text {
        font-size: 11px
    }
}
/* Weather Widget */
.weather-widget {
    font-family: Arial, sans-serif;
    background: #f0f0f0;
    border: 1px solid #ccc;
    padding: 20px;
    width: 300px;
    margin: 0 auto;
    text-align: center;
}

    .weather-widget h2 {
        margin: 0;
        font-size: 24px;
    }

    .weather-widget .date-time {
        font-size: 14px;
        color: #666;
    }

    .weather-widget .forecast {
        margin: 20px 0;
    }

        .weather-widget .forecast div {
            margin: 5px 0;
        }

        .weather-widget .forecast .day {
            font-weight: bold;
        }



/* Add this to your CSS file */
a.special-link {
    color: blue; /* Change the text color */
    background-color: yellow; /* Add a background color */
    font-size: 16px; /* Increase the font size */
    text-decoration: underline; /* Add an underline */
    padding: 5px; /* Add some padding around the link */
}

    a.special-link:hover {
        color: red; /* Change the text color on mouseover */
        background-color: lightblue; /* Change the background color on mouseover */
    }