@font-face {
    font-family: 'Moranga';
    src: url('images/Moranga-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}



body{
    margin: 0;
    padding: 0;
    background-color: #dbd8ce;
}

.wrapper{
    display: flex;
    flex-wrap: nowrap;
    position: relative;
}

.image{
    background-image: url('images/BG.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    height: 100vh;
    width: 50vw;
    display: flex;
    justify-content: center;
    align-items: center;
}
.image img{
    width: 75%;
}

.text{
    height: 100vh;
    width: 50vw;
    background-color: #dbd8ce;
}


.adress{
    position: absolute;
    bottom: 5vw;
    left: 55vw;
}

.text p, .text h1{
    color: rgb(50, 76, 52);
    font-family: 'Moranga';
    font-size: 1.75rem;
    margin: 0;
    line-height: 1.3;
}
.info{
    position: absolute;
    margin-left: 55vw;
    margin-top: 4vw;
}

.info h1{
    color: rgb(50, 76, 52);
    font-family: 'Moranga';
    font-size: 1.75rem;
    margin: 0;
    line-height: 1.3;
}

@media only screen and (max-device-width : 640px) {
    
    .wrapper{
        display: unset;
    }
    .info{
        display: none;
    }

    .image{
        width: 100vw;
        height: 50vh;
    }
    .text{
        width: 100vw;
        height: 50vh;
        position: absolute;
    }
    .adress{
        position: unset;
        bottom: unset;
        left: unset;
    }
    .text p, .text h1{
        color: rgb(50, 76, 52);
        font-family: 'Moranga';
        font-size: 5vw;
        margin: 0;
        line-height: 1.3;
        margin-left: 5vw;
        margin-top: 25vh;
        transform: translateY(-75%);
    }

  }

  @media only screen and (max-width: 800px) {
    
    .wrapper{
        display: unset;
    }
    .info{
        display: none;
    }

    .image{
        width: 100vw;
        height: 50vh;
    }
    .text{
        width: 100vw;
        height: 50vh;
        position: absolute;
    }
    .adress{
        position: unset;
        bottom: unset;
        left: unset;
    }
    .text p, .text h1{
        color: rgb(50, 76, 52);
        font-family: 'Moranga';
        font-size: 1.5rem;
        margin: 0;
        line-height: 1.3;
        margin-left: 5vw;
        margin-top: 25vh;
        transform: translateY(-50%);
    }

  }