.header-content{
    width: 100%;
    height: 90vh;
    background-image: url("../image/ocean-back.jpg");
    background-repeat: no-repeat;
    background-size: cover;

    display: flex;
    align-items: center;
}

.header-content div{
    margin: 50px;
}

.header-content div p{
    color: var(--formal-white);
    font-size: var(--text-title);
    text-shadow: 0 2px 3px var(--formal-grey);
}

.main{
    width: 100%;
    display: flex;
    flex-flow: row wrap;
    background-color: var(--formal-dark);
    box-shadow: 0 0 15px var(--formal-white);
}

.main div{
    width: 50%;
    height: 35vh;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    padding: 15px;
    text-align: center;
}

.main div h2{
    color: var(--formal-white);
    text-shadow: 0 5px 5px var(--formal-grey);
    font-size: var(--text-title);
    text-decoration: underline;
    margin-bottom: 20px;
}

.main div p{
    color: var(--formal-grey);
    font-size: var(--text-items);
}

footer{
    width: 100%;
    height: 10vh;
    display: flex;
    flex-flow: row wrap;
    padding: 10px 25px;
}

footer div{
    width: 50%;
    height: 100%;
    justify-content: space-between;
    text-align: center;
}

footer div h2{
    font-size: var(--text-title);
    color: var(--formal-white);
}

footer div p{
    font-size: var(--text-items);
    color: var(--formal-grey);
}