body {
    margin: 0;
    font-family: Arial;
    min-height: 100vh;
    min-height: fill-available;
    min-height: -webkit-fill-available;
}

html {
    height: fill-available;
    height: -webkit-fill-available;
}

.container {
    margin: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: row;
}

.img-box {
    width: 50%;
    height: 100vh;
}

.bg1 {
    background-image: url("https://www.docciaoutlet.it/doccia/wp-content/uploads/2023/01/pexels-derwin-edwards-11208975-scaled.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.bg2 {
    background-image: url("https://www.docciaoutlet.it/doccia/wp-content/uploads/2023/01/pexels-max-vakhtbovych-6207947-scaled.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.content-wrapper { 
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 100%;
    scale: 0.7;
    opacity: 0;
    transition: all .5s;
    background-color: rgba(0, 0, 0, 0.5);
}

.effect-1:hover > .content-wrapper {
    scale: 1;
    opacity: 1;
}

.logo-box {
    padding-top: 30%;
    display: flex;
    justify-content: center;
}

.logo-box > img {
    max-width: 80%;
}

.btn-wrapper {
    padding-top: 10%;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 14px;
    color: #000;
    border: 1px solid rgba(255,255,255,0.3);
    background-color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: 0.4s;
}

.btn:hover {
    background-color: transparent;
    color: #fff;
    transition: 0.4s;
}

@media screen and (max-width: 820px) {
    .content-wrapper {
        scale: 1;
        opacity: 1;
    }
}

@media screen and (max-width: 479px) {
    .container {
        flex-direction: column;
    }

    .img-box {
        width: 100%;
        height: 50vh;
    }

    .logo-box > img {
        max-width: 40%;
    }
}