@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700;900&display=swap');


body
{
    font-family: 'Poppins', sans-serif;
    width:100%;
    margin:0px;
    font-size: 14px;
    line-height: 22px;
    text-align: center;
}

.container
{
    display: flex;
    min-height: 100vh;
}

.recreatie, .bungalow
{
    width:50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.recreatie, .bungalow
{
    position: relative;
    background-image: url('img/goudsberg-recreatiepark.jpg');
    background-size: cover;
    border-right:solid 2px #ffffff;
}

.recreatie::after, .bungalow::after
{
    content:"";
    position: absolute;
    width:100%;
    height: 100%;
    background-color: rgba(243, 243, 210, 0.7);
    z-index: 0;
}

.bungalow
{
    background-image: url("img/goudsberg-bungalow.jpg");
    border-right:none;
    border-left:solid 2px #ffffff;
}

.bungalow::after
{
    background-color: rgba(255, 255, 255, 0.7);
}

.content
{
    position: relative;
    z-index: 1;
    padding-left:15px;
    padding-right: 15px;
}

h1, h2
{
    font-weight: 900;
    font-size:35px;
    line-height:34px;
    color:#006e32;
    width:100%;
    max-width: 375px;
    margin:auto;
    margin-bottom: 20px;
    text-transform: uppercase;
}

p
{
    width:100%;
    max-width: 450px;
    margin:auto;
    margin-bottom: 40px;
}

a.button
{
    display: block;
    width:130px;
    height:40px;
    line-height: 40px;
    border-radius: 20px;
    box-shadow: 0 4px 12px 0 rgba(0, 110, 50, 0.3);
    background-color: #006e32;
    color:#ffffff;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 700;
    margin:auto;
}

.logo
{
    position: absolute;
    width:100%;
    bottom:28px;
    z-index: 2;
}

@media (max-width: 767px)
{
    .container
    {
        display: block;
    }   

    .recreatie, .bungalow
    {
        width:100%;
        min-height: 50vh;
        padding-top:50px;
        padding-bottom: 50px;
        border:none;
    }

    .logo
    {
        position: relative;
        bottom:0px;
        padding-top:10px;
        padding-bottom:10px;
    }
}