html, body {
    margin: 0;
    padding: 0;
    border: 0;
    font-family: 'Zilla Slab', Arial, sans-serif;
    font-size: 18px;
    line-height: 1.2em;
    text-align: left;
    font-weight: 400;
    color: #443A37;
    background-color: #E9C7B5;
}

.wrapper {
    width: 100vw;
    height: 100vh;
    position: relative;
    background-color: #E9C7B5;
    padding: 0 90px;
    box-sizing: border-box;
    display: block;
}

.wrapper-mobile {
    width: 100vw;
    height: 100vh;
    position: relative;
    background-color: #E9C7B5;
    padding: 0 90px;
    box-sizing: border-box;
    display: none;
}

.side1 {
    width: 90px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(assets/greca_sx.png);
    background-size: 90px;
    background-repeat: repeat-y;
    background-position: 0 0;
}

.side2 {
    width: 90px;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    background-image: url(assets/greca_dx.png);
    background-size: 90px;
    background-repeat: repeat-y;
    background-position: 0 0;
}

.content{
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    flex-flow: row nowrap;
}

.item1{
    width: 50%;
    height: 100%;
    position: relative;
    background-image: url(assets/img.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.item2{
    width: 50%;
    height: 100%;
    position: relative;
    display: flex;
    justify-content: center;
}

.monogram {
    position: absolute;
    right: 34px;
    bottom: 28px;
}

.info {
    width: 100%;
    height: 100%;
    max-width: 300px;
    display: flex;
    flex-flow: column nowrap;
    justify-content: space-around;
}

.social {
    display: flex;
    align-items: center;
}

.fa-brands {
    color: #443A37;
    transition: all 0.3s;
}

.fa-instagram {
    font-size: 24px;

}

.fa-facebook-f {
    font-size: 20px;
    margin-right: 20px;
}

a:link, a:visited {
    text-decoration: none;
    color: #443A37;
    transition: all 0.3s;
}

a:hover, a:active{
    text-decoration: none;
    color: #bc2a32;
    transition: all 0.3s;
}

.fa-brands:hover {
    color: #bc2a32;
}


/* MOBILE */

@media only screen and (max-width: 1080px) {

    .wrapper {
        display: none;
    }

    .wrapper-mobile {
        display: block;
    }

    .side1 {
        position: fixed;
    }

    .side2 {
        position: fixed;
    }

    .item1{
        width: 100%;
        height: 100vh;
    }

    .item2{
        width: 100%;
        height: 100vh;
    }
}

@media only screen and (max-width: 540px) {

    .wrapper {
        display: none;
    }

    .wrapper-mobile {
        display: block;
        padding: 0;
    }

    .side1 {
        display: none;
    }

    .side2 {
        display: none;
    }

    .item1{
        width: 100%;
        height: 100vh;
        background-position: center;
    }

    .item2{
        width: 100%;
        height: 100vh;
    }
}
