/************* Fonts ********************************************************************/
@font-face {
	font-family: 'free_serif_bold_italic';
	src: url('../fonts/woff/free_serif_bold_italic.woff') format('woff');
  }
@font-face {
font-family: 'free_serif_bold_italic';
src: url('../fonts/woff/free_serif_bold_italic.woff2') format('woff2');
}

@font-face {
	font-family: 'ubuntu_mono';
	src: url('../fonts/woff/ubuntu_mono.woff') format('woff');
  }
@font-face {
font-family: 'ubuntu_mono';
src: url('../fonts/woff/ubuntu_mono.woff2') format('woff2');
}

@font-face {
	font-family: 'ubuntu_mono_italic';
	src: url('../fonts/woff/ubuntu_mono_italic.woff') format('woff');
}
@font-face {
	font-family: 'ubuntu_mono_italic';
	src: url('../fonts/woff/ubuntu_mono_italic.woff2') format('woff2');
}

/*** Wallpaper ************************************************************************/
/* Ensures the wallpaper covers the full page */
html { height: 100%; }

body { 
	background-color: bisque;
	background-image: url("../img/bg/fauxmedia_wallpaper_09.jpg");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	overflow-y: hidden;
	/* background-attachment: scroll; */
}
/**************************************************************************************/

img { height: 133px; }

.grid {
	display: grid;
	grid-template-columns: 1fr 1fr;		  
	grid-template-rows: 1fr 1fr;     	   
    height: 60vh;
	grid-template-areas:				/* Design the layout: */
	"box1 box1"							/* Arbitrary names for containers */ 
	"box2 box2"
}

.box1, .box2 {
	display: flex;
	flex-direction: column;
	align-items: center;
} 

.box1 {
	grid-area: box1;
	justify-content: center;	
}

.box2 {
	grid-area: box2; 
	/* justify-content: space-evenly; */
	gap: 33px;
	font-family: ubuntu_mono;
	font-size: 1.5rem;
	color: white;
}

@media (width > 480px) {

	/* img { height: 100px; } */

	.grid {
		grid-template-areas:			
		"box1 box2"						
		"box1 box2"
	}

	.box1 {
		width: 30vw;
	}

	.box2 {
		width: 70vw;
		flex-direction: row;
		/* justify-content: space-evenly; */
		gap: 66px;
		font-size: 1.5rem;
	}
}

/**** iPhone Landscape ***********************************************************/
@media only screen and (max-device-width: 480px) and (orientation: landscape) {
    /* Adjust .grid or other elements for short viewport heights */
    .grid {
        height: 90vh; /* Or auto, or adjust padding/margin */
    }
    img {
        height: 80px;
    }
}

