@font-face {
    font-family: 'Poppins';
    src: url(img/Poppins-ExtraBold.ttf);
    font-weight: bolder;
}
@font-face {
    font-family: 'Futura';
    src: url(img/futura\ medium\ bt.ttf);
    font-weight: normal;
}

html, body, .main{
    height: 100%;
    width: 100%;
    margin: 0;
}

.main{
    display: flex;
    flex-direction: column;
    background: url(img/MALINCONICO_WEBPAGE_BKG_01.jpg);
    background-size: cover;
    color: white;
    max-height: 100%;
}

.heading{
    font-size: 2.9vw;
    text-align: center;
    width: 62%;
    margin: .5em 0;
    font-family: Futura;
    font-weight: normal;
    align-self: center;

}

.content{
    width: 100%;
    display: flex;
    flex-direction: row;
}
.iframe-container{
    width: 65%;
}
.sidebar{
    width: 17.5%;
    text-align: center;
    display: flex;
    align-items: center;
}
.sidebar-left{
    flex-direction: column-reverse;
}
.sidebar img{
    width: 70%;
    margin: 0;
}
.sidebar .qrcode{
    width: 60%;
}
.sidebar-left img{
    width: 45%;
}
.footer{
    flex: 1;
    height: 0;
    font-family: Poppins;
    text-align: center;
    font-size: 1.15vw;
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer img{
    height: 100%;
    max-height: 90px;
    margin-left: 4%;
}
.logo-mobile{
    display: none;
}

/* TABLET PORTRAIT */
@media screen and (max-width: 1024px) and (orientation: portrait){
    .heading, .sidebar, .footer{
        display: none;
    }
    .main{
        background: black;
    }
    .content{
        width: 100%;
    }
    .iframe-container{
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .logo-mobile{
        display: grid;
        align-items: center;
        justify-items: center;
        flex: 1;
    }
    .logo-mobile img{
        width: 30%;
    }
}

/* MOBILE PORTRAIT */
@media screen and (max-width: 480px) and (orientation: portrait){
    .heading, .sidebar, .footer{
        display: none;
    }
    .iframe-container, .content{
        width: 100%;
        margin-left: 0;
    }
}

/* MOBILE LANDSCAPE */
@media screen and (max-width: 980px) and (orientation: landscape){
    .heading, .sidebar, .footer{
        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){
    .heading, .sidebar, .footer, .tutorial, .logos{
        display: none;
    }
    .main{
        background: black;
    }
    .iframe-container, .content{
        width: 100%;
        height: 100%;
        margin: 0;
    }
    .iframe-container{
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}