html {
	cursor: default;
}
        
@font-face {
    font-family: 'Neue';
    src: url('../Fonts/Neue/NeueHaasDisplayBold.ttf') format('truetype'),
        url('../Fonts/Neue/NeueHaasDisplayBoldItalic.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}
        
body {
	background-color:#9cc2ff;  
	display: flex;
	flex-direction: column; /* Stacks children vertically */
	min-height: 100dvh;      /* Ensures the body takes up at least the full viewport height */
	/* margin: 0;              /* Optional: removes default body margins */
	font-family: Helvetica, Arial, sans-serif;
	width: 800px;
	margin: 10px auto 30px auto;
}

main {
	flex-grow: 1; /* Pushes the footer to the bottom by taking up remaining space */
}

        /*
        
			div.gallery {
            	border-radius:12px;
    			cursor: pointer;
  				float: left;
  				background-color: grey;
  				padding: 10px;
				}

			div.gallery:hover img {
    			opacity: 1.0;
				}

			div.gallery img {
  				width: 100%;
  				height: auto;
				opacity: 0.8;
				}
        
			.center {
            	display: block;
  				margin-left: auto;
  				margin-right: auto;
  				width: 100%;
				}
        
			.row {
  				display: flex;
				}
        	
			.column {
  				float: left;
				}
        
        	.columnheader {
  				display: flex;
            	width: 33.33%;
        		}
        
        	.columncontent {
  				padding: 5px;
        		}
        
			.side {
            	width: 25%;
            	height:auto;
            	border-radius:12px;
            	background-color: #0e8f3d;
  				padding: 10px;
				}

        	
			.middle {
  				width: 50%;
            	border-radius:12px;
            	background-color: #0e538f;
  				padding: 10px;
            	height:100%;
				}
        
        	
        */
        
        /* New Classes for a New Version*/
        
.sticky {
	position: sticky;
	/* top: 0; */
}
        
.header-box {
	height:115px;
	background-color:#ffffff;
	box-shadow: 3px 3px 0px rgba(0, 0, 0, 0.3);
	border: 1px solid black;
        }

.header-button {
	position: absolute;
	bottom: 0;
	z-index: 1000;
	width: 100%;
	/* background: var(--window-background); */ 
	white-space: nowrap;
	font-weight: bold;
	border-top: 1px solid black;
	overflow: hidden;
	display: flex;
}
        
.header-button a {
	padding:5px 10px;
	color: black;
	border-right: 1px solid black;
	background-color: transparent;
	text-decoration: none;
	border-bottom: 1px solid black;
	cursor:pointer;
}
        
.header-button a:hover {
	color: white;
	background-color: #9cc2ff;
	text-decoration: none;
	cursor:pointer;
}
        
.header-title {
	font-family: Neue;
	padding: 15px;
	font-weight:bold;
	font-size:300%;
	text-align:center;
}
        
        /*
        
        a:link {
  		color: black;
  		background-color: transparent;
  		text-decoration: none;
		}

		a:visited {
  		color: black;
  		background-color: transparent;
  		text-decoration: none;
		}

		a:hover {
  		color: red;
  		background-color: transparent;
  		text-decoration: none;
		}

		a:active {
  		color: yellow;
  		background-color: transparent;
  		text-decoration: underline;
		}
        
        */
        
.website-grid {
	padding-top: 32px;
	display: grid;
	grid-template-columns: 4fr 1fr;
	gap: 16px;
}

.block {
	background-color:#ffffff;
	box-shadow: 3px 3px 0px rgba(0, 0, 0, 0.3);
	margin:0px 0px 16px 0px;
	border: 1px solid black;
	height:auto;
}

#side .block {
	max-height:250px;
	width:200px;
	overflow: scroll;
	scrollbar-width: none;
    -ms-overflow-style: none;
}

.block-title {
	font-family: Neue;
	padding: 5px;
	font-weight:bold;
	font-size:200%;
	text-align:center;
	border-bottom: 1px solid black;
}
        
.block-image {
	width:150px;
	height:200px;
	padding:2px 0px 0px 2px;
}
        
.block-content {
	padding:5px;
}
        
.iframe-container {
  width: 199.5px;
  height: 52.5px;
  overflow: hidden; /* Hides the extra scaled space */
}

.iframe-container iframe {
  width: 570px; /* Original width of content */
  height:150px; /* Original height of content */
  transform: scale(0.35); /* Scales content to 50% */
  transform-origin: top left; /* Ensures scaling starts from the top left corner */
}

.iframe-container-minecraft iframe {
  width: 860px; /* Original width of content */
  height:240px; /* Original height of content */
  transform: scale(0.22); /* Scales content to 50% */
  transform-origin: top left; /* Ensures scaling starts from the top left corner */
}

.image-container {
	display: flex;
	justify-content: space-evenly; /* Distributes space evenly between images, not on the ends */
	/* OR use 'space-evenly' to have equal space before the first, between, and after the last image */
	/* OR use 'justify-content: space-around;' for space at the ends that is half the space in between */
	width: 100%; /* Ensures container takes full width */
}

.image-container img {
	padding:5px 0px;
	max-width: 24%; /* Adjust width to account for spacing if using padding/margin, or let flex handle it */
	height: auto; /* Maintain aspect ratio */
}