.dropbtn {
    background-color: #000080;
    color: white;
    padding: 16px;
    font-size: 16px;
    border: none;
    z-index: 2;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 3;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: #ddd;
    color: white;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown:hover .dropbtn {
    background-color: #ee0000;
    color: white;
}

.dropdown:visited {
    color: white;
}

body {
    background-color: #e0fbfb;
    font-family: "Times New Roman", Times, serif;
}

a:link {
    color: #000080;
}

a:hover {
    background: #adff2f;
}

a:visited {
    color: #CD853F;
}

h1 {
    color: #000080;
}

h2 {
    color: #1874cd;
}

h3 {
    color: #00bfff;
}

td,
th {
    padding: 3pt;
}

table {
    border-collapse: collapse;
}

@keyframes marquee {
    0% {
        text-indent: 550px
    }
    100% {
        text-indent: -550px
    }
}

.marquee {
    width: 550px;
    margin: auto;
    padding: 2px;
    overflow: hidden;
    white-space: nowrap;
    border: solid 1px #CCCCCC;
    animation: marquee 10s linear infinite;
}

.marquee:hover {
    animation-play-state: paused;
}