* {
    box-sizing: border-box;
    margin: 0px;
    padding: 0px;
}


html {
    width: auto;
    height: 100%;
}

body {
    width: auto;
    height: 100%;
    font-family: 'Open Sans',Arial,sans-serif;
}

@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/open-sans-v17-latin-regular.eot'); /* IE9 Compat Modes */
  src: local('Open Sans Regular'), local('OpenSans-Regular'),
       url('fonts/open-sans-v17-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('fonts/open-sans-v17-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
       url('fonts/open-sans-v17-latin-regular.woff') format('woff'), /* Modern Browsers */
       url('fonts/open-sans-v17-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
       url('fonts/open-sans-v17-latin-regular.svg#OpenSans') format('svg'); /* Legacy iOS */
}

.background {
    background: url(../img/ralf-jungebloed.jpg) no-repeat;
    background-size: cover;
    background-position: right top;
    width: 100%;
    height: 100%;
    position: relative;

}

.site-logo {
    position: absolute;
    top: 3%;
    left: 3%;
    padding: 20px;
    max-width: 40%;
    display: flex;
    justify-content: center;
    align-content: center;
    flex-direction: column;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid #82c341;
}

.site-logo img {
    max-width: 370px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    
}

blockquote {
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

blockquote h2 {
font-weight: 400;
margin: 40px 0;
}


.contact {
border-radius: 5px;
display: inline-block;
padding: 20px 25px 20px 25px;
text-decoration-line: none;
font-size: 16px;
text-transform: uppercase;
color: #ffffff;
background-color: #82c341;
}

.contact:hover
 {background-color:rgba(130,195,65,.8);
}

/*========= media queries ========*/


@media only screen and (max-width: 1200px) {

     .background {
        background-position: 85% top;
    }
}



@media only screen and (max-width: 992px) {
    .site-logo {
        max-width: 35%;
    }

    blockquote h2 {
        font-size: 20px;
    }

}


@media only screen and (max-width: 768px) {
    .site-logo {
        max-width: 35%;
    }

    .site-logo {
        top: auto;
        bottom: 0px;
        left: 0px;
        right: 0px;
        max-width: 100%;
    }

    .site-logo img {
        width: 60%;
        margin: auto;

    }
    

}


@media only screen and (max-width: 576px) {




    .site-logo img {
        width: 60%;
        margin: auto;

    }

    blockquote h2 {
        font-size: 20px;
    }

    .contact {
        padding: 10px;

    }

}