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

#splash {
    margin-top: 5%;
    margin-bottom: 10%;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-bottom: 1px solid white;
}

#face {
    display: flex;
    justify-content: center;
}

#splash img{
    width: 70%;
}

#face img{
    width: 60%;
}

#highlights{
    display: flex;
    justify-content: space-between;
}

#highlights h4{
    font-size: 0.9em;
    text-align: center;
    margin: 0px;
}

.highlight_col{
    overflow: hidden;
    min-width: 50%;
}

.highlight_block{
    display: flex;
    aspect-ratio: 1;
    background-color: red;
    border-radius: 25%;
    overflow: hidden;
    margin: 0.2em;
    justify-content: center;
    align-items: center;
}
.highlight_block:hover{
    cursor: pointer;
    filter: invert();
    transition: filter 0.5s ease-in-out;
}

.highlight_block img{
    min-height: 100%;
}

.highlight_content{
    position: absolute;
    font-size: 0.8em;
    text-align: center;
    padding: 1em;
}

#vault{
    background: linear-gradient(32deg, blue, violet)
}
.highlight_content h1, .highlight_content h2, .highlight_content h3, .highlight_content h4{
    margin: 0px;
}



@media screen and (min-width: 100vh) {
    /* The width is greater than the height */
    .content{
        display: flex;
        flex-direction: row;
        /* margin: auto; */
        justify-content: center;
        align-items: center;
    }
    #splash{
        max-width: 40%;
    }
    #highlights{
        display: flex;
        max-width: 40%;
    }
  }