:root {
    --yellow: #FFD834;
    --green: #09745F;
    --pink: #FFC3DC;
    --purple: #E8D7FF;
    --red: #FE5A36;
}

* {
    font-family: "Montserrat", serif;
    margin: 0;
}

header {

    display: flex;
    /* position: fixed; */
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background-color: var(--purple);

    nav {

        display: flex;
        flex-direction: row;
        justify-content: end;
        width: 100%;
        height: 100px;

        .nav {
            width: 120px;
            height: 100px;
            text-decoration: none;
            font-weight: bold;
            color: var(--green);
            text-align: center;
            vertical-align: middle;
            line-height: 100px;
        }

        .nav:hover {
            text-shadow: 0px 0px 20px var(--green);
        }
    }

    img {
        height: 140px;
        margin: -20px 0;
        padding-left: 20px;
    }

}

/* Position .dropdown in the nav alongside other links */
.dropdown {
    position: relative;
    display: inline-block;
}

/* The "Policies" link that toggles the dropdown */
.dropbtn {
    /* Match styling of .nav anchors */
    text-decoration: none;
    font-weight: bold;
    color: var(--green);
    text-align: center;
    line-height: 100px;
    /* match your header's height */
    display: inline-block;
    width: 120px;
}

/* The hidden menu */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 120px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

/* Submenu links inside the dropdown */
.dropdown-content a {
    display: block;
    padding: 10px;
    color: var(--green);
    text-decoration: none;
    text-align: left;
    line-height: normal;
}

.dropdown-content a:hover {
    background-color: var(--purple);
}

/* Show the dropdown on hover */
.dropdown:hover .dropdown-content {
    display: block;
}


/* Main content styling */
main {
    max-width: 80%;
    margin: 120px auto 40px;
    /* extra top margin so content isn't hidden by header */
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h1 {
    font-family: "Londrina Solid", cursive;
    color: var(--green);
    margin-bottom: 20px;
    font-size: 2.5rem;
}

h2 {
    color: var(--green);
    margin-bottom: 20px;
    font-size: 1.75rem;
}

h3 {
    color: var(--green);
    margin-bottom: 20px;
    font-size: 1.25rem;
}

p {
    margin-bottom: 16px;
    color: #333;
}

/* Footer styling */
footer {
    text-align: center;
    padding: 20px;
    background-color: var(--purple);
    color: var(--green);
}