@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');

@font-face {
    font-family: 'Bazyl';
    src: url('fonts/Bazyl.eot');
    src: url('fonts/Bazyl.eot?#iefix') format('embedded-opentype'),
        url('fonts/Bazyl.woff2') format('woff2'),
        url('fonts/Bazyl.woff') format('woff'),
        url('fonts/Bazyl.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}


/*font-family: 'Varela Round', sans-serif;
font-family: 'Lato', sans-serif;*/


body {
    margin: 0;
    padding: 0;
    padding-top: 40px;
    height: 100vh;
    background-image: url(images/background.png);
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;

}


/*html {
    height: 100%;
    background-image: url(images/background.jpg);
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: 100%;
}*/

h2 {
    font-size: 32px;
    line-height: 40px;
    font-family: 'Bazyl';
    color: black;
    text-transform: uppercase;
    font-weight: 100;
    margin-top: 5px;
    margin-bottom: 10px;
}

a {
    text-align: center;
    position: relative;
    display: block;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 25px;
    text-transform: uppercase;
    color: #e14f11;
    font-weight: bold;
}

a:hover {
    color: #139639;
}

.orangetext {
    color: #e14f11;
}

.greentext {
    color: #139639;
}

p {
    font-size: 16px;
    line-height: 25px;
    color: black;
    font-family: 'Roboto', sans-serif;
    text-align: center;
    margin-bottom: 0px;
}

.title {
    text-align: center;
}

img.top-logo {
    height: 200px;
    margin-bottom: 20px;
}


.main-content-left-column {
    flex: 0 38%;
    padding-right: 12%;
}

.main-content-right-column {
    flex: 0 50%;
}

a.email {
    text-decoration: none;
    font-size: 16px;
    color: #ee4c9b;
    transition: 0.4s;
    margin-bottom: -8px;
    display: block;
    font-family: 'Varela Round', sans-serif;
}

a.email:hover {
    color: #20386a;
}

.title {
    margin-bottom: 14px;
    -webkit-animation: fadein 2s;
    /* Safari, Chrome and Opera > 12.1 */
    -moz-animation: fadein 2s;
    /* Firefox < 16 */
    -ms-animation: fadein 2s;
    /* Internet Explorer */
    -o-animation: fadein 2s;
    /* Opera < 12.1 */
    animation: fadein 2s;
}

.bottom-content {
    margin-top: 25px;
}

.bottom-social {
    text-align: center;
    margin-top: 40px;
}

.bottom-social a {
    margin: 0 10px;
    transition: 0.4s;
}

.bottom-social a:hover {
    opacity: 0.6;
}


/* animation */

@keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}


/* Firefox < 16 */

@-moz-keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}


/* Safari, Chrome and Opera > 12.1 */

@-webkit-keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}


/* Internet Explorer */

@-ms-keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}


/* responsive */

@media only screen and (max-width: 959px) {
    .container {
        height: 100vh;
        padding: 0px 10%;
    }

    h2 {
        font-size: 26px;
        line-height: 30px;
    }

    p {
        font-size: 14px;
        line-height: 20px;
    }
}

@media only screen and (max-width: 767px) {
    body {
        background: url(images/background-mobile.png);
        background-position: center;
        background-size: cover;
        background-attachment: fixed;
    }

    img.top-logo {
        height: auto;
        width: 88%;
    }

    a {
        font-size: 14px;
        line-height: 20px;
    }

    h2 {
        font-size: 22px;
        line-height: 26px;
    }

    .container {
        height: 100vh;
        padding: 0px 5%;
        width: 100%;
        margin-bottom: 30px;
    }

    .main-content-left-column {
        flex: 0 42%;
        padding-right: 0%;
    }
}