#outerframe{
    width: 100vw;
    height: 100vh;
    background: #17334e;
    display: grid;
    justify-content: center;
    align-items: center;
    background: url(bg04.jpg);
    background-size: cover;
}

#innerframe{
    width: 55vh;
    height: 90vh;
}

#innerframe iframe{
    width: 100%;
    height: 100%;
	border: none;
	outline: 3px solid #ffffff80;
	filter: drop-shadow(0px 10px 40px black);
	border-radius: 25px;
}


@media screen and (orientation: portrait) and (max-width: 500px){
	#innerframe{
	    width: 100vw;
	    height: 100vh;
	}
	
	#innerframe iframe{
		outline: 0;
		filter: unset;
		border-radius: 0 !important;
	}
	
	#container {
	    top: 55px !important;
	    left: 25px !important;
	    right: unset !important;
	}

}