/* Base styles */
body {
    background: linear-gradient(-45deg, #afafff, #d4e4ed, #c6d1d6, #e8d4f8);
    background-size: 400% 400%;
    animation: gradient 60s ease infinite;
    min-height: 100vh;
    margin: 0;
    cursor: default;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Typography */
h1 {
    color: black;
    margin-left: 15%;
    margin-top: 5%;
    font-family: monospace;
    font-style: italic;

}

p {
    margin-left: 15%;
    margin-right: 20%;
    padding: 3% 5%;
    border: 3px solid black;
    border-style: dotted dashed outset double;
    font-family: 'Courier New', Courier, monospace;
    font-size: 14px;
    line-height: 1.6;
}

/* Links - global */
a {
    color: blue;
    text-decoration: underline;
    cursor: pointer;
}

a:hover {
    color: darkblue;
}

/* Navigation links section */
.links {
    color: blue;
    font-family: monospace;
    font-size: 12px;
    margin-left: 20%;
    margin-top: 2%;
}

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

.dropbtn {
    background-color: transparent;
    color: blue;
    border: none;
    font-size: 12px;
    font-family: monospace;
    cursor: pointer;
    padding: 0;
}

.dropbtn:hover {
    color: darkblue;
}

.dropdown-content {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    background-color: whitesmoke;
    border: 3px double #000000;
    font-family: monospace;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 100;
}

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

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

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

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