﻿/* Style for the navigation menu */
html {font-size: 20px; font-family: Arial, Helvetica, sans-serif;padding:0;}
body{margin:0px;line-height:1.5rem;cursor: default;padding:0;box-sizing: border-box;}
.pageBody{display:flex;flex-grow: 1;}
.mainContent{display:flex;flex-direction:column;justify-content:flex-start;flex-grow: 1;background-color:rgb(230, 255, 168);min-height:350vh;border-radius:7px;}
.pageFooter{background-color:#000;color:#fff;text-align:center;}
.navbar {
    display: flex;
    background-color: #333;
}

.navbar a {
    font-size: 16px;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

/* Dropdown container */

/* Dropdown button */
.dropbtn {
    font-size: 16px;
    border: none;
    outline: none;
    color: #fff;
    padding: 14px 16px;
    background-color: inherit;
    font-family: inherit;
    margin: 0;
    cursor: pointer;
    user-select:none;
}
    .dropbtn:hover {
        background-color: red;
    }
/* Dropdown content (hidden by default) */
.dropdown-content {
    position: absolute;
    background-color: #808080;
    z-index: 1;
    overflow: hidden;
    max-height: 0px;
    animation: 0.8s ease forwards;
}

/* Define keyframes for the slide-down animation */
@keyframes slideDown {
    0% {
        color: transparent;
        max-height: 0px;
        opacity: 0;
        max-height: 0px;
        overflow: hidden;
    }

    100% {
        max-height: 400px; /* Adjust the value to control the slide-down height */
        opacity: 1;
        overflow: hidden;
        color: #000;
    }
}

@keyframes slideUp {
    0% {
        max-height: 400px; /* Adjust the value to control the slide-down height */
        opacity: 1;
        overflow: hidden;
    }

    100% {
        max-height: 0px;
        opacity: 0;
        overflow: hidden;
    }
}

/* Links inside the dropdown */
.dropdown-content a {
    float: none;
    color: inherit;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
    white-space: nowrap;
}

    /* Change color of dropdown links on hover */
    .dropdown-content a:hover {
        background-color: #ddd;
    }

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content:hover {

}

.showIt {
}

.hideIt {
}
