* { margin:0; padding:0; text-decoration:none;}

body {
	background-color: #ffccc7;
    background-image: url('https://file.garden/ajgDWkQtw2Pbq_U2/Backgrounds/Winged%20Heart%20Checkered%20Pattern%20Tile.gif');
    background-size: 150px 150px; 
    color: #fea299;
    font-family: 'VT323', 'Courier New', monospace;
    font-size: 20px;
    margin: 0;
    padding: 40px;
    display: flex;
    justify-content: center;
    overflow-x: hidden;
}

#container {
	max-width:1500px;
	margin:10px auto;
	padding:10px;
}

header {
	width:100%;
	height:150px;
	background:#95ccd4;
	margin-bottom:10px;
}

#columns {
	display:flex;
	flex-wrap:wrap;
}

main {
	width:1000px;
	padding:15px;
	background:#FFF;
	margin:0px 10px 0px 10px;
}

main h1 {
	font:25px;
	border-bottom:1px solid #ea9128;
}

main h2 {
	font:22px;
}

main p {
	margin:5px 0px 5px 0px;
	line-height:1.5;
}

main a, footer a, nav a {
	color:#1e6070;
	text-decoration:none;
}

main a:hover, footer a:hover, nav a:hover {
	color:#ea9128;
	text-decoration:underline;
}

main input, textarea, select {
	color:#51747b;
	background:#f5f5f5;
	font:14px;
	border:1px solid #51747b;
	padding:5px;
}

main button {
	color:#51747b;
	background:#cbe6e6;
	font:14px;
	border:1px solid #51747b;
	padding:5px;
}

main ul { 
	list-style: inside;
	margin:5px;
}

main ul li ul {
	margin-left:15px;
}

nav {
	padding:15px;
	background-image:url('https://file.garden/ajgDWkQtw2Pbq_U2/Handmade%20Stuff/Webpage%20Assets/Chalkboard%20Nav%20Menu.png');
	background-repeat: no-repeat;
	background-size: contain;
	width:195px;
	height:550px;
}

nav ul {
	list-style:none;
	margin:0;
}

nav li a {
	display:block;
	background:#cbe6e6;
	color:#51747b;
	margin:0px 12px 5px 0px;
	text-decoration:none;
	padding:2px;
}

nav li a:hover {
	background:#FFF;
	color:#ea9128;
	text-decoration:none;
}

nav h1 {
	font:20px;
}

nav p {
	margin:5px 0px 5px 0px;
	font-size:0.9em;
}


footer {
	padding:15px;
	text-align:center;
	margin:10px 0px 0px 0px;
	background:#FFF;
}

img {
	max-width:95%;
	margin:5px;
}

@media screen and (max-width: 799px) {
	body {
		margin-inline: auto; /* space around the body horizontally */
		max-width: 90%; /* how wide the body is relative to the screen */
  
		display: flex; /* flexbox will be super useful for this */
		flex-direction: column; /* like a normal body */
		gap: 5px; /* adjust this, it's the space between containers in the body */
		background-image: url("/path/to/background"); /* you already know this */

		&>* {
			width: 100%; /* all containers inside must be as wide as the body */  
		}
	}
	
	main {
		flex-grow:1;
	}
	
	#left {
		order:2;
		margin:0px 0px 10px 0px;
	}
	
	#right {
		order:3;
	}
	
	nav {
		width:100%;
		flex-grow:1;
		display:grid;
		grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
		grid-gap:5px;
	}
	
	main {
		margin:0px 0px 10px 0px;
	}
}

iframe {
    border: none;
    height: 100%;
    width: 100%;
}

iframe[name=window] {
    height: 165px;
    width: 1500px;
    margin: 0px 0px 10px 0px;
    z-index: 3;
    position: relative;
}

iframe[name=content] {
	height: 635px;
    width: 1510px;
    margin: 0px 0px 10px 0px;
    z-index: 3;
    position: relative;
}

.window {
    position: relative;
    width: 1500px;
    height: 165px;
}

.blinky-container {
	grid-column: span 2;
    background: white;
    border: 2px solid #fa8377;
	width: 179px;
    height: 465px;
    overflow-y: scroll;
    text-align: center;
    border-radius: 10px;
}

.pfp {
    width: 150px;
    height: 150px;
    background: white;
    border: 4px solid #fa8377;
    border-radius: 15px;
    object-fit: cover;
}

banner {
    display: flex;
    gap: 20px;
    background-image: url('https://file.garden/ajgDWkQtw2Pbq_U2/Backgrounds/Cute%20dotted%20heart%20pattern%20tile.png');
    padding: 15px;
    border-radius: 20px;
    border: 2px solid #fa8377;
    margin-bottom: 20px;
}

/*  STICKER DECO */
.sticker {
    position: absolute;
    z-index: 10;
    pointer-events: none;
    image-rendering: pixelated;
}

.content-box {
    background: rgba(255, 255, 255, 0.85);
    border: 2px solid #fa8377;
    border-radius: 15px;
    padding: 15px;
    position: relative;
}

.content-box h2 {
    margin-top: 0;
    font-size: 26px;
    color: #fa8377;
    border-bottom: 2px solid #fa8377;
}

.nav-btn {
        display: inline-block;
        padding: 5px 20px;
        margin: 5px;
        background: linear-gradient(to bottom, #fff9f9, #ffccc7, #fa8377);
        border: 2px solid white;
        border-radius: 50px;
        color: white;
        text-decoration: none;
    }