#home-hero {
    margin-bottom: 2em;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background-color: var(--uva-blue);
    /* border-top: solid 10px var(--uva-orange);
    border-bottom: solid 10px var(--uva-orange); */
}

#home-hero-left {
    margin: auto;
    padding: 3em;
    display: flex;
    flex-direction: column;
    color: white;
    border-left: solid 30px var(--uva-orange);
    border-right: solid 30px var(--uva-orange);
}

#home-hero-title {
    font-size: 5em;
    font-weight: bold;
}

#home-hero-subtitle {
    font-size: 1.2em;
    text-align: center;
}

#home-hero-image {
    height: 100%;
}

#computing-options {
    width: 100%;
    padding: 2em 0em;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.computing-option {
    width: 25%;
    padding: 1em;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: solid 1px var(--uva-medium-gray);
    box-shadow: -10px 10px 10px var(--uva-blue-25);
}

.computing-option h3 {
    font-size: 1.3em;
    font-weight: bold;
}

.computing-option:hover {
    color: var(--uva-blue);
}

.computing-option:hover h3 {
    text-decoration: underline;
    text-decoration-color: var(--uva-orange);
}

#testimonials {
    margin-top: 1.5em;
    display: flex;
    justify-content: space-between;
    text-align: left;
}

.testimonial-block {
    width: 30%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.quote {
    margin-top: 1em;
    padding-top: 1em;
    width: 80%;
    font-weight: bold;
    font-style: italic;
    border-top: 1px solid var(--uva-medium-gray);
}

@media (max-width: 1200px) {
    #home-hero-left {
        margin: 6em auto;
    }
    
    #home-hero-image {
        display: none;
    }
}

@media (max-width: 800px) {
    #home-hero-left {
        margin: 4em auto;
        padding: 2em;
        border-left: none;
        border-right: none;
    }

    #home-hero-title {
        font-size: 3em;
    }

    #computing-options {
        flex-direction: column;
        gap: 50px;
    }

    .computing-option {
        width: 100%;
    }

    #testimonials {
        flex-direction: column;
    }

    .testimonial-block {
        width: 100%;
        margin-bottom: 2em;
    }
}