:root{
    --primary-color: white;
    --phlay-color: black;
    --accent-color: black;
}

html, body, .main{
    width: 100%;
    height: 100%;
    overflow: hidden;
    margin: 0;
    background-color: var(--accent-color);
    font-family: 'Arial', sans-serif;
}

.main{
    display: grid;
    grid-template-rows: 100%;
    background: url(img/AMALFI_WEBPAGE_SFONDO_02.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}

.container{
    display: grid;
    grid-template-columns: 33% 34% 33%;
    grid-template-rows: 100%;
    padding-top: 3%;
}

.content-center{
    display: table;
    width: 100%;
    height: 100%;
    align-self: center;
}
.center-cell{
    display: table-cell;
    margin: auto;
    vertical-align: top;
    height:100%;
}


.content-right{
    background-size: cover;
    display: grid;
    align-items: start;
    justify-items: center;
}
.content-left{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.content-left img{
    margin-top: 5%;
}
.content-right img{
    margin-top: 5%;
}
.side-img{
    width: 80%;
}
.qrcode{
    width: 40%;
}
.side-img.demo{
    width: 50%;
    margin-top: 0;
    margin-left: 15%;
}

.pack-header{
    width: 100%;
    display: grid;
    text-align: center;
    align-items: start;
}

.banner-container{
    width: auto;
    display: grid;
    align-items: start;
    justify-items: center;
}

.banner-mobile{
    width: 3%;
    margin: 0 auto 0 auto;
}

.phlay-container{
    align-self: start;
    justify-self: center;
    max-width: 640px;
    width: 100%;
    height: 100%;
    display: grid;
    margin: 20% auto 0 auto;
}

.frame{
    align-self: center;
    justify-self: center;
    margin: auto;
    border: none;
    width: 100%;
    height: 100%;
}

.header{
    display: flex;
    width: 100%;
    background-color: var(--phlay-color);
    color: var(--primary-color);
    font-family: 'Arial', sans-serif;
    text-align: center;
    font-weight: 400;
    align-items: center;
    justify-content: center;
}
.title{
    margin-top: 1%;
    margin-block-end: 0;
    margin-block-start: 0;
    height: 80%;
    justify-self: center;
}
.subtitle{
    margin: 0;
    font-size: 1.1em;
    margin-block-end: 0;
    margin-block-start: 0;
    letter-spacing: 3px;
}

.header-img{
    width: 80%;
    margin: 0 auto;
}

.content-img{
    height: 100%;
}

.separator{
    width: 102%;
    align-self: end;
}
.cta{
    width: 100%;
    display: none;
    align-self: end;
}

.logo{
    width: 12%;
    align-items: flex-start;
}

.footer{
    width: 100%;
    display: none;
    align-items: center;
    justify-items: center;
}


/* MOBILE PORTRAIT */
@media only screen and (max-width: 480px){
	body{
		background: #918ec5;
	}
	
    .content-right, .content-left, .header, .pack-header, .countdown, #info-container{
        display: none;
    }
    
    .phlay-container{
        height: 100%;
        width: 100%;
        margin: 0 auto;
    }

    .frame{
        width: 100%;
        height: 100%;
    }
    
    .footer{
		display: none;
	}
    .banner-mobile{
        display: block;
        width: 30%;
        margin-top: 8%;
    }
    
    .main{
        display: grid;
        grid-template-rows: 100%;
        overflow-y: auto;
		background: #918ec5;
    }
    .container{
        display: grid;
        grid-template-columns: 100%;
        grid-template-rows: 100%;
        overflow-y: scroll;
        padding-top: 0;
    }

}


/* MOBILE LANDSCAPE */
@media only screen and (max-width: 900px) and (orientation: landscape){

    .main, .container{
        display: grid;
        grid-template-columns: 100%;
        grid-template-rows: 100%;
        padding-top: 0;
		background: #918ec5;
    }
    
    .content-right, .content-left, .footer, .header, .pack-header, #info-container{
        display: none;
    }
    
    .center-cell{
    	vertical-align: center;
    }
    
    .frame{
        width: 100%;
        height: 100%;
    }
    
    .phlay-container{
        width: 100%;
    	height: 100% !important;
        max-width: 1000px;
    	margin: auto;
    }
}


/* TABLET PORTRAIT */
@media only screen and (min-width: 481px) and (max-width: 1024px) and (orientation: portrait){
    .content-right, .content-left, .header, .pack-header, .countdown, #info-container{
        display: none;
    }
  
    .main{
        grid-template-rows: 100%;
        overflow-y: auto;
        background: var(--accent-color);
    }

    .phlay-container{
        width: 100%;
    	height: 100%;
    	margin: auto;
    }
    
    .frame{
        width: 100%;
        height: 100%;
    }
    
    .container{
        display: grid;
        grid-template-columns: 100%;
        grid-template-rows: 100%;
    }

    .footer{
        display: none;
    }
    .footer a{
        width: 100%;
    }
    .banner-mobile{
        max-width: 640px;
        width: 15%;
        display: block;
    }

}


/* TABLET LANDSCAPE */
@media only screen and (min-width: 880px) and (max-width: 1366px) and (orientation: landscape){
    
    .content-right, .content-left, .header, .pack-header, .countdown, #info-container{
        display: none;
    }
  
    .main{
        grid-template-rows: 100%;
        overflow-y: auto;
        justify-content: center;
    }

    .container{
        display: grid;
        grid-template-columns: 100%;
        grid-template-rows: 100%;
    }

    .phlay-container{
        width: 50%;
    	height: 100%;
        margin: auto;
    }
    
    .frame{
        width: 100%;
        height: 100%;
    }

    .footer{
        display: grid !important;
    }
    .banner-mobile{
        display: block;
        width: 10%;
        margin-top: 10%;
    }
    
}