body {
    font-family: 'Roboto', sans-serif;

    display: flex;
    flex-direction: column;
    margin: 0px;
}

    /* note: header and hero should probably be separate components instead */
    /* also aesthetic components might be worth combining classes for for conciseness 
    (but not practical stuff like flexbox bc they work differently) */
    /* need to remember to commit often */
    /* review css exercise 2 or other people's solutions and make note of what you should remember for next time
    rather than modifying your code */

    /* FIN */
    .header {
        background: #1F2937;
        color: #F9FAF8;

        display: flex;
        flex-direction: column;
        align-items: center;
    }

        .headerPanel {
            display: flex;
            align-items: space-between;
            justify-content: space-between;

            width: 880px;

            padding: 16px;
        }

            .logo {
                display: flex;
                align-items: center;
                justify-content: center;

                font-size: 24px;
                font-weight: 600;
            }

            .links {
                list-style: none;
                display: flex;

                gap: 18px;
            }

                a {
                    text-decoration: none;
                    color: #E5E7EB;
                    font-size: 18px; 
                }

        /* FIN */
        .hero {
            display: flex;
            align-items: space-between;
            margin: 70px 0px 120px;
        }

            .heroText {
                display: flex;
                flex-direction: column;
                flex-wrap: wrap;
                justify-content: center;
                margin-right: 20px;
            }
            
                .heroHeader {
                    font-size: 48px;
                    font-weight: 900;
                    width: 350px;
                }

                .heroBody {
                    width: 450px;
                }
            
                .heroBody, .buttonOne {
                    font-size: 18px;
                    color: #E5E7EB;
                }

                .buttonOne {
                    background: #3882F6;
                    font-weight: 550;
                    padding: 8px 25px;
                    border-radius: 10px;
                    margin-top: 13px;
                    width: 120px;
                    display: flex;
                    flex: 0 0 auto;
                }

            .epaulette {
                width: 400px;
                border: 5px solid rgb(47, 47, 47);
            }

    .content {
        display: flex;
        flex: 1;
        flex-direction: column;

        align-items: center;
    }

        /* FIN */
        .quote {
            background: #E5E7EB;
            display: flex;
            flex-direction: column;
            align-items: center;

            padding: 90px;
            gap: 5px;
            width: stretch;
        }

            .quoteText {
                font-style: italic;
                font-size: 36px;
                font-weight: 300;
                color: #1F2937;
            }

            .quoteCredit {
                font-weight: 600;
                display: flex;
                flex-direction: row;
                justify-content: flex-end;
                width: 200px;
                font-size: 20px;
            }

    /* double check css exercise 2 for reference */
    .info {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

        .infoHeader {
            font-size: 36px;
            font-weight: 900;
            color: #1F2937;
            margin: 40px;
        }

        .infoImages {
            display: flex;
            justify-content: space-around;
            gap: 60px;
            text-align: center;
            margin-bottom: 120px;
        }
            .info1, .info2, .info3, .info4 {
                width: 150px;
                display: flex;
                flex-direction: column;
                align-items: center;
                gap: 6px;
            }

                .epaulette1, .epaulette2, .epaulette3, .epaulette4 {
                    width: 160px;
                    border-style: solid;
                    border-color: #3882F6;
                    border-radius: 8px;
                    border-width: 4px;
                }

    /* FIN */
    .callToAction {
        display: flex;
        flex-direction: row;

        background: #3882F6;
        justify-content: space-between;
        gap: 20px;
        width: 700px;
        margin: 60px;
        padding: 45px 100px;
        border-radius: 8px;
    }

        .callHeader {
            color: #F9FAF8;
            font-weight: bold;
            font-size: 20px;
        }

        .callText {
            color: #E5E7EB;
        }

        .buttonTwo {
            background: #3882F6;
            color: #F9FAF8;
            font-weight: bold;
            border-radius: 8px;
            border-style: solid;
            border-color: #F9FAF8;
            width: 120px;
            padding: 0;
        }

    /* FIN */
    .footer {
        display: flex;
        align-items: center;
        justify-content: center;

        background: #1F2937;
        color: #E5E7EB;
        padding: 37px;
    }

