/* em for fonts */

/* main container of the website */

body {
    height: 100%;
    margin: 0;
    
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-image: linear-gradient(#564A70, #DCB09C, #E0D589);
}

.container {}

.invisible { 
    
    display: none;
}

.main {
    width: 90%;
    height: auto;
    background-color: #fcf0be;
    margin: 0 auto;
    margin-top: 2%;
    overflow-x:hidden;
    margin-bottom: 2.5%;
    text-align: justify;
}

/* header of the container */

.header {
    margin-top: none;
    margin-left: 4%;
    margin-top: 4%;
    height: auto;
    width: 100%;
    text-align: center;
    position: relative;
}

.header img {
    height: auto;
    max-width: 90%;
    
}

/* content of the container */

.content {
    margin-top: 2.5%;
}

.center {
    width: 95%;
    height: auto;
    margin-left: 2.5%;
    float: right;
}

.left {
    width: 45%;
    height: auto;
    margin-left: 2.5%;
    margin-top: -2.5%;
    float: left;
}

.right {
    width: 45%;
    height: auto;
    margin-left: 50%;
    margin-top: 5%;
}

.row {
    width: 95%;
    height: auto;
    max-height: inherit;
    margin-left: 2.5%;
    position: inherit;
    margin-top: 5%;
    overflow: auto;
}

.right img {
    margin-top: -2%;
}

/* media queries for the container */

@media only screen and (min-width: 576px) {
    .main {
        width: 70%;
    }
    .right img {
        margin-top: 10%;
    }
}

@media only screen and (min-width: 768px) {
    .main {
        width: 80%;
    }
    .right img {
        margin-top: 10%;
    }
}

@media only screen and (min-width: 992px) {
    .main {
        width: 90%;
    }
    .right img {
        margin-top: 10%;
    }
}

@media only screen and (min-width: 1200px) {
    .main {
        width: 90%;
    }
    .right img {
        margin-top: -2%;
    }
}

@media only screen and (max-width: 1500px) {
    .right {
        width: 95%;
        height: auto;
        margin-left: 2.5%;
        margin-top: 2.5%;
        /*background: #e6e6e6;*/
    }

    .left {
        width: 95%;
        height: auto;
        margin-left: 2.5%;
        float: none;
        /*background-color: #e6e6e6;*/
    }
    
    .right img {
        margin-top: -2%;
    }
}
