
/*  MENU CLASSES  */

 /* Dropdown Button */
.menubtn {
    background-color: #4CAF50;
    color: white;
    padding: 16px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    width: 180px;
}

/* The container <div> - needed to position the dropdown content */
.menudropdown {
    position: relative;
    display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.menu-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    text-align: left;
}

/* Links inside the dropdown */
.menu-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

/* Change color of dropdown links on hover */
.menu-content a:hover {background-color: #f1f1f1}

/* Show the dropdown menu on hover */
.menudropdown:hover .menu-content {
    display: block;
}

/* Change the background color of the dropdown button when the dropdown content is shown */
.menudropdown:hover .menubtn {
    background-color: #3e8e41;
} 


/*  HYPERLINK POPUPS  */

.linkbtn {
    background-color: #4CAF50;
    color: white;
    padding: 16px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    width: 180px;
}

.linkpopup {
    position: relative;
    display: inline-block;
}

.linkpopup-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    text-align: left;
}

.linkpopup-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.linkpopup-content a:hover {background-color: #f1f1f1}

.linkpopup:hover .linkpopup-content {
    display: block;
}

.linkpopup:hover .linkbtn {
    background-color: #f9f9f9;
    color: black;
} 

.terms {
    width: 800px;
    max-width: 800px;
    margin: 50px;
    font-family: "Times New Roman", Times, serif;
}

