body {
    padding: 0px 0px;
    margin: 0px 0px;
    font-family: 'Calibri', 'Arial', sans-serif;
    color: #ffffff;
    background-color: #293D85;
}

.navbar {
    color: #ffffff;
    background-color: transparent;
    --bs-navbar-color: rgba(255, 255, 255, 0.95);
    --bs-navbar-hover-color: rgba(255, 255, 255, 0.95);
    --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28 255, 255, 255, 0.95 %29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='3' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    --bs-navbar-toggler-border-color: rgba(255, 255, 255, 0);
}

@media (min-width: 420px) {
    .navbar {
        display: none;
    }
}

.navbar .navbar-nav {
    margin-top: 1rem;
    margin-right: 1rem;
}

.navbar .nav-item,
.navbar .nav-item:focus,
.navbar .nav-item:active {
    color: #ffffff;
    font-size: 1.5rem;
    transition: 0.3ms 
}

.navbar .nav-item:hover {
    font-weight: bold;
}

#main > div {
    min-height: 100vh;
    min-height: calc(var(--vh, 1vh) * 100); /* --vh height calculated with js to solve issue with mobile address bar */
    margin-top:  -72px /* minus navbar height */
}

@media (min-width: 420px) {
    #main > div {
        margin-top:  0;
    }
}

/* Placeholder to center content when nav-buttons is hidden */
#main .top-placeholder {
    display: block;
    margin: 1.5rem 0;
}

@media (min-width: 420px) {
    #main .top-placeholder {
        display: none;
    }
}

#main .nav-buttons {
    width: 90vw;
    max-width: 1200px;
    display: none;
    flex-direction: row;
    justify-content: space-between;
    margin: 2rem 0;
}

@media (min-width: 420px) {
    #main .nav-buttons {
        display: flex;
    }
}

#main .top-nav-button,
#main .top-nav-button:hover,
#main .top-nav-button:visited,
#main .top-nav-button:active,
#main .top-nav-button:focus {
    border: solid 2px #ffffff; 
    border-radius: 5px; 
    padding: 8px 16px;
    font-size: 1.5rem;
    font-weight: bold;
    width: 180px;
    text-align: center;
    color: #ffffff;
    text-decoration: none;
    display: block;
}

#main .llc-disclaimer {
    width: 90vw;
    max-width: 1200px;
    font-style: italic;
    margin: 1.5rem 0;
}


/* Form fields */

#main form input,
#main form textarea {
    background-color: #D9DEF3;
    border: solid 2px #D9DEF3;
    padding: 4px 8px;
    font-size: 1.5rem;
    width: 100%;
}

#main form input[type="submit"] {
    background-color: #3B3A46;
    border: solid 2px #ffffff;
    border-radius: 5px;
    color: #ffffff;
    text-transform: uppercase;
}