/* ---------- HOME ----------*/
/* Content */ 
.centeredText {
    font-size: 4vw;
}
.whitespace {
    
    width: 100%;
    height: 300px;
    background-color: white;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.whitespace a {
    text-decoration: none;
    color: #333333;
    font-size: 20px;
    position: absolute;
    width: 30%;
    height: auto;
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid #C2BBBB;

}
.whitespace a:hover {
    color: #FCB545;
}

/* Mobile */ 
@media only screen and (max-width: 1024px) {

    .centeredText {
        font-size: 6vw;
    }
    .whitespace a {
        width: 50%;
    }
}