body {
    background-color: var(--dashboard-page-color);
}

#logo-container {
    color: var(--primary-1);
}

h2 {
    text-align: center;
    font-weight: 800;
    font-size: 3em;
    margin: 4vh 0;
}

.quote {
    color: var(--accent);
    text-align: center;
    font-size: 2em;
    margin: 6vh auto;
    font-style: italic;
    width: 60%;
}

#hero-image {
    display: block;
    margin: 6vh auto;
    width: 70vw;
    height: 80vh;
    object-fit: cover;
    border-radius: 8px;
}

body > p {
    text-align: center;
    font-family: "Quicksand", sans-serif;
    font-weight: 600;
    width: 60%;
    margin: 1vh auto;
}

#values-container {
    width: 80vw;
    border-radius: 8px;
    padding: 2vh 4vw;
    margin: 2vh auto;
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    gap: 10px;
}

.value {
    width: 25%;
    height: 40vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    margin: 3vh 0;
    padding: 2vw;
    border-radius: 8px;
    background-color: white;
    gap: 15px;
}

.value img {
    width: auto;
    height: 7vh;
}

.value h4 {
    font-size: 1.5em;
    font-weight: 600;
    text-align: center;
}

.value p {
    text-align: center;
    font-family: "Quicksand", sans-serif;
    margin: 1vh auto;
}

#differences {
    width: 80vw;
    /* border: 1px solid var(--primary-1); */
    margin: 2vh auto;
}

#differences h4 {
    font-size: 1.5em;
    margin-left: 5vw;
    margin-bottom: 2vh;
}

#differences p {
    margin-left: 5vw;
    margin-bottom: 3vh;
}

@media (orientation: portrait) {
    .quote {
        width: 90%;
    }

    #hero-image {
        width: 90%;
        height: 60vh;
    }

    body > p {
        width: 90%;
        margin: 3vh auto;
    }

    #values-container {
        width: 90%;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 0px;
    }

    .value {
        width: auto;
    }
}
