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   --  */


/*  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;
}


/*    CONTACT PAGE   */

.contents {
    margin: 25px;
    padding: 25px;
    min-height: 150px;
}

    .contents H1 {
        font-size: 14px;
        color: #5ce353;
    }


/*  These things are for the - FORM - page   */

form {
    margin: 0 auto;
    width: 600px;
    color: greenyellow;
}

/* Style the text boxes */
input, textarea {
    width: 575px;
    height: 50px;
    background: #333;
    border: 1px solid #dedede;
    padding: 5px;
    margin-top: 3px;
    font-size: 15px;
    color: white;
    border-radius: 5px;
}

/*  Message text area  */
textarea {
    height: 250px;
    min-height: 150px;
    max-height: 350px;
    max-width: 575px;
    min-width: 550px;
}

    input:focus, textarea:focus {
        border: 1px solid #97d6eb;
    }

    /*   SUBMIT button  */
#submit {
    width: 150px;
    height: 50px;  
    border: none;
    margin-top: 20px;
    cursor: pointer;    
}

    #submit:hover {
        opacity: .75;
    }


