* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: white;
	font-weight: 100;
}

@font-face {
    font-family: "6x7 Pixel";
    src: url(../fonts/the-6x7-pixel-font.ttf);
}


@font-face {
    font-family: "Thinpixel";
    src: url(../fonts/thinpixel.ttf);
}

:root {
    --color1: #ffffff;
    --color2: #ffffff;
}

body {
    background-color: black;
    background: linear-gradient(var(--color1), var(--color2)), url(../images/eiuds.png) no-repeat left top;
    background-position: center, center;
    background-blend-mode:overlay; 
    background-repeat: no-repeat, no-repeat;
    background-size:cover;
    background-attachment: fixed;
    image-rendering: pixelated;

    
    font-family: "Thinpixel";
    /* word-spacing: -3px; */
    min-height: 100dvh;
    overflow-x: hidden;
    display: flow-root; /* Keeps internal child margins inside body */
    font-size: 1.75vh;
}



/* .navbar {
	display: flex;
	justify-content: center;
	align-items: center;
	border: 2px solid white;
	border-top:none;
	border-radius: 0 0 40px 40px;
    font-family: "6x7 Pixel";
} */

.thinglist {
    margin: auto;
}

.navbar a {
	margin: 4px 12px 4px 12px;
}

@media (max-width: 768px) {
    .cheeseburger {
        width: 95dvw;
    }
    .sona {
        display: none;
    }
}

@media (min-width: 1500px) {
    .cheeseburger {
        width: 60dvw;
    }
}

/* 1. Ensure the parent container has relative positioning so spooky grounds itself relative to .cheeseburger */
.cheeseburger {
    position: relative; /* Add this */
    min-height: 100dvh;
    width: 75dvw;
    margin: auto;
    box-shadow: 0 0 30px rgba(200, 255, 255, 0.8),
                0 0 30px rgba(255, 200, 255, 0.8);
    border-left: 4px solid #ffffffbb;
    border-right: 4px solid #ffffffbb;
    transition: width 0.3s ease;
    display: flow-root;
    background-color: black;
}

.navbar {
    position: relative; /* Needed so spooky can anchor inside navbar */
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid white;
    border-top: none;
    border-radius: 0 0 40px 40px;
    font-family: "6x7 Pixel";
}

.spooky {
    position: absolute;  /* Absolute positioning takes it out of normal layout flow */
    right: 20px;         /* Anchors it to the right side inside navbar */
    opacity: 0;
    scale: 0.8;
    transition: opacity 0.2s linear, scale 0.2s linear;
}

.spooky:hover {
    opacity: 0.4;
    scale: 1;
}

.name {
    background-image: url("../images/esoijf.gif");
    background-size: auto 100%;
    background-repeat: repeat;
    color: white;
    font-weight: 700;
    font-size: clamp(1.2rem, 4vw, 5rem);
    text-align: center;
    width: 100%;
    border-bottom: 2px solid white;
    height: 20vh;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0px 0px 40px 40px;
    image-rendering: pixelated;
	img {
		height: 100%;
	}
}

.hotdog {
    margin: 15px;
}

hr {
    margin: 15px 0;
    border: 1px solid #ffffffbb;
}

/* Float styling so the video acts as an obstacle */
.media-section {
    overflow: hidden; /* Contains floats naturally */
}

.video-box {
    float: left;
    width: calc(1.75 * 5 * 16 / 9)vh;
    aspect-ratio: 16/9;
    margin-right: 15px;
    margin-bottom: 10px;
    /* border: 2px solid white; */
}

.video-box iframe {
    width: 100%;
    height: 100%;
    display: block;
}

p {
    text-align: left;
    line-height: 1.4;
	letter-spacing: 1px; /* Slightly separates pixel font characters */
	margin-bottom: 1em;
}

smol {
    font-size: 0.7em;
    opacity: 0.5;
}

a:hover {
	color: cyan;
	cursor: pointer;
}

a:active {
	color: blue;
}

.socials-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: fit-content;
    margin: 0 auto;
}

.socials-list {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.socials-list img {
    width: 48px;
    height: 48px;
}

.socials-notice {
    display: block;
    width: 100%;
    white-space: nowrap;
    text-align: justify;
    text-align-last: justify; /* Stretches letter spacing edge-to-edge */
    font-size: 9px;           /* Lower this pixel size until it fits perfectly */
    margin-top: 6px;
    font-family: "6x7 Pixel";
}

.sona {
    /* object-fit: contain; */
    /* width:10%; */
    float:right;
}
/* 
.sonacontainer {
    height: 50%;
    float: right;
    margin-left: 10px;
} */

.makethisinrows {
    display: grid;
    gap: 0px;
    font-family: "6x7 Pixel";
}

.makethisinrows.cols-8 {
    grid-template-columns: repeat(8, 1fr);
}

.makethisinrows.cols-4 {
    grid-template-columns: repeat(4, 1fr);
}

.makethisinrows.cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

.makethisinrows.cols-1 {
    grid-template-columns: 1fr;
}

/* .biotext {
    container-type: inline-size;
} */

@media (max-width: 1350px) {
    .sona {
        display: none;
    }
}

input,
textarea {
    background-color: black;
    color: white;
    border: 2px dashed white;
    border-radius: 16px;
    font-family: "Thinpixel";
}

textarea {
    resize: vertical !important;
}
