/*
ROOT
 */
:root {
    --darkgrey: #2f2f2f;
    --lightgrey: #f4f4f4;
    --blue: #2276a0;
    --background-image: url('../images/washington.jpg');
}

html {
    scroll-behavior: smooth;
    font-family: 'Courier New', Courier, monospace;
}

html, body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    background-color: white;
    background-image: var(--background-image);
    background-size: cover;
    background-position: center;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
/*
HEADER SECTION
 */
header {
    margin: 5vh auto;
    max-width: 500px;
    padding: 30px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: var(--lightgrey);
    opacity: 80%;
}

header p {
    font-weight: bold;
    font-size: 20px;
    color: var(--darkgrey);
}

header span {
    font-weight: bold;
}
/*
GENERAL
 */
h2 {
    font-size: 30px;
}

a {
    color: deepskyblue;
    font-weight: bold;
    transition: 0.5s;
}

p {
    font-weight: bold;
}
main {
    padding-bottom: 5vh;
}
span {
    color: #2276a0;
    font-weight: bold;
}

/*
NAVBAR SECTION
 */
h1 {
    margin: 0;
}
h1 a {
    font-size: 40px;
    text-decoration: none;
    color: var(--lightgrey);
}
nav {
    background: var(--darkgrey);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    padding: 10px 0;
}
nav div {
    display: flex;
    flex-direction: column;
}
nav ul {
    display: flex;
    padding: 0;
    justify-content: center;
}
nav ul li {
    list-style: none;
    margin: 0 10px;
}

nav ul li a {
    text-decoration: none;
    font-size: 18px;
    position: relative;
}
footer nav {
    flex-direction: row;
    padding: 10px 10%;
}
#divider {
    border-bottom: 1px solid var(--lightgrey);
    width: 90%;
    align-self: center;
}

/*
FOOTER SECTION
 */
footer {
    display: flex;
    flex-direction: column;
    background: var(--darkgrey);
    color: white;
    text-align: center;
    padding: 10px 0;
    width: 100%;
    position: relative;
    bottom: 0;
}

footer p {
    font-weight: normal;
}

footer a {
    text-decoration: none;
}
#mobile {
    display: none;
}

/*
DEVICE SETTINGS
 */
main {
    background-color: var(--lightgrey);
    padding: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    box-sizing: border-box;
    margin: auto;
    border-radius: 25px;
    max-width: 1200px; /* Adjust as needed */
    width: 90%; /* Adjust percentage based on design requirements */
}
/* Rule Overrides For Laptops / Small Screens */