:root {
    --text-color: #000000;
    --background: #ffffff;
    --primary: #00bb00;
    --secondary: #008400;
    --accent: #87CEFA;
    --nav-bar-height: 6rem;
}

header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    padding: 0 1rem;
    height: var(--nav-bar-height);
    background-color: var(--primary);
    color: var(--background);
}

#logo-container {
    display: flex;
    flex-direction: row;
    align-items: center;
}

#logo {
    height: var(--nav-bar-height);
}

#logo-container p {
    padding-top: .5rem;
    padding-bottom: 1.5rem;
    font-size: 3rem;
    font-family: "Book Antiqua";
    letter-spacing: .5rem;
    color: var(--background);
    font-style: italic;
}

nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    font-size: large;
}

nav button {
    font-size: 1.2rem;
    padding: 0 1rem;
    height: var(--nav-bar-height);
    background-color: var(--primary);
    border: none;
    color: var(--text-color);
    text-align: center;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    font-family: "Book Antiqua";
}

nav button:hover {
    background-color: var(--primary);
    color: var(--background);
}

nav>div {
    height: var(--nav-bar-height);
}

nav a {
    text-decoration: none;
    color: var(--text-color);
}

nav a:hover {
    color: var(--background);
}

.dropdown {
    overflow: visible;
}

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


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

.dropdown a {
    overflow: visible;
    padding: 1rem 0;
}

.dropdown-content {
    position: relative;
    display: none;
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    width: inherit;
    background-color: var(--primary);
}
