
*{
    box-sizing: border-box;
}

html, body, .main{
    height: 100%;
    width: 100%;
    margin: 0;background: black;
}

.main{
    display: flex;
    flex-direction: column;
    background: url(img/BALENCIAGA_SFONDO_WEBPAGE_01.jpg);
    background-size: cover;
    color: white;
    max-height: 100%;
    font-weight: normal;
    color: white;
}


.header{
    background-color: black;
    width: 100%;
    height: 55px;
    display: grid;
    grid-template-columns: 50% 50%;
    grid-template-rows: 100%;
    align-items: center;
    padding: 0 2%;
    font-weight: normal;
    font-size: 14px;
}

.title{
    align-self: center;
    justify-self: center;
    margin: 0 auto;
    font-size: 2vw;
}
.logo{
    height: 33%;
    width: auto;
}

.learn-more{
    margin-left: auto;
    height: 100%;
    display: flex;
    width: 50%;
    align-items: center;
    justify-content: flex-end;
}
.learn-more img{
    height: 58%;
    margin-left: 3%;
    cursor: pointer;
}


.content{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    position: relative;
}
.iframe-container{
    width: 64%;
    justify-content: center;
    display: flex;
}
.qrcode{
    position: absolute;
    bottom: 0;
    width: 10%;
    right: 4%;
}


.footer{
    flex: 1;
    height: 0;
    max-height: 150px;
    margin-top: auto;
    font-weight: 100;
    text-transform: uppercase;
    font-size: 1.2vw;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer img{
    width: 80%;
}


/* TABLET PORTRAIT */
@media screen and (max-width: 1024px) and (orientation: portrait){
    .header, .footer, .qrcode{
        display: none;
    }
    .main{
        background: black;
    }
    .heading{
        width: 80%;
        font-size: 2vw;
        margin: 1.5em 0;
    }
    .iframe-container{
        height: 100vh;
        width: 100%;
    }
    
}

/* MOBILE PORTRAIT */
@media screen and (max-width: 480px) and (orientation: portrait){
    .header, .sidebar, .footer, .qrcode{
        display: none;
    }
    .main{
        background: black;
    }
    .iframe-container, .content{
        height: 100%;
        width: 100%;
        margin-left: 0;
    }
}

/* MOBILE/TABLET/FRAME LANDSCAPE */
@media screen and (max-width: 1400px) and (orientation: landscape){
    .header, .sidebar, .footer, .qrcode{
        display: none;
    }
    .main{
        background: black;
    }
    .iframe-container, .content{
        width: 100%;
        height: 100%;
        margin-left: 0;
    }
    .iframe-container{
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}