/*
Author: Toby Goetz, Leeroy Hegwood, Zalman Izak
Date: 2/9/2024
Description:
    Styles for home.html.
*/

:root {
    --primary-color: #FFC300; /* naples yellow */
    --primary-color-variant: #FFE15C; /* mikado yellow */
    --white: white;
    --primary-blue: #2660e3; /* dark blue */

}

/* general styles */

body, header, footer {
    background-color: var(--primary-color);
}

#description {
    font-weight: bolder;
    font-size: clamp(1rem, 3.5vw, 3.5rem);
}

main {
    background-color: var(--primary-color-variant);
}