:root{
    --primary-color:#004794;
}

*{
    padding: 0;
    margin: 0;
    font-family: Manrope, sans-serif;
}

.landing-container{
    display: flex;
    justify-content: space-evenly;
    height: 90vh;
    align-items: center;
    flex-direction: column;
}

.half-page{
    width: 90vw;
    display: flex;
    justify-content: center;
    height: 35vh;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    border: none;
    box-shadow: 5px 5px 8px 0px #dddddd;
    transition: all .3s ease;
}

.half-page:hover {
    scale: 1.1;
}

.landing-container > .image-link{
    text-decoration: none;
    color: white;
    font-size: 19px;
}

.title{
    padding-top: 20px;
}

.title-container{
    letter-spacing: 3px;
    color: white;
    text-align: center;
    padding-top: 20px;
}

@media (min-width: 576px) {
    .half-page{
        width: 40vw;
        height: 55vh;
    }

    .landing-container{
        flex-direction: row;
    }

    .header-container{
        display: flex;
        background: var(--primary-color);
        position: relative;
        justify-content: center;
        height: 9vh;
    }

    .header-container > img{
        width: 100px;
        position: absolute;
        left: 70px;
    }
}