body {
    font-family: 'Rokkitt', serif;
    background: #c0d2d9;
    margin: 0;
    padding: 0;
    font-size: 18px;
}

h1 {
    font-family: 'Ewert', cursive;
    font-size: 5em;
    line-height: 1em;
    margin-top: 0px;
}



h2 {
    background: #000000;
    color: #c0d2d9;
    text-align: center;
    padding: 25px;
    font-size: 1.5em;
}

p {
    margin: 1em;
}

.white {
    color: #ffffff;
}

.container {
    margin: 10% auto;
    max-width: 1350px;
    padding: 0px 30px;
}

.col-left {
    text-align: center;
}

.col-right {
    text-align: center;
}

.col-left img {
    width: auto;
    height: 250px;
}

.button {
    color: #ffffff;
    background: #4a8599;
    display: inline-block;
    border-radius: 5px;
    font-size: 1.5em;
    line-height: 1em;
    text-decoration: none;
    padding: 20px 25px;
    margin-top: 30px;
}

.button:hover {
    color: #4a8599;
    background: #ffffff;
}

.mobile {
    display: none;
}

@media screen and (min-width: 800px) { 
.col-left, .col-right {
    float: left;
    text-align: left;
}

.col-left {
    width: 40%;
    
}

.col-right {
    width: 60%;
}
    .col-left img {
    width: 100%;
    height: auto;
}
}

@media screen and (max-width: 1340px) {
    body {
        font-size: 16px
    }
}

@media screen and (max-width: 1024px) {
    body {
        font-size: 12px
    }
    p {
        font-size: 16px;
    }
}

@media screen and (max-width: 500px) {
    h1 {
        font-size: 3em;
    }
    .mobile, .button {
        display: block;
        margin-top: 0px;
    }
}