/*about page css */
.horizontal-row{
    clear: both;
    max-width: 1440px;
    margin: 0 auto;
    height: fit-content;
}

.horizontal-row img{
    width: 100%;
    height: auto;
}

.horizontal-content-left{
    max-width: 70%;
    float: left;
}

.horizontal-card-right{
    width: 300px;
    height: 300px;
    float: right;
    background: #060E2E;

    border-radius: 10px;
}


figure {
    width:300px;
    height: auto;
    margin-bottom: 10px;
    margin-left: 0px;
    float: left;
}

figure img{
    width: 100%;
    height: auto;
    border-radius: 10px;
}

figcaption {
    font-size: 14px;
    font-family: 'Roboto',sans-serif;
    height: auto;
    padding: 0.5em;
    color: #EBEEF3;
}

/*i had to use such a large breakpoint because the cards were displaying incorrectly
  between 800 and 1100 px width viewports */
@media screen and (max-width: 1092px) {
    .horizontal-content-left{
        max-width: 100%;
        height: auto;
        clear: both;
        float: none;
    }

    .horizontal-card-right{
        justify-content: center;
        float: none;
        margin: 0 auto;
    }
    
}