/* General body styles */
body {
    margin: 0;
    padding: 0;
    height: 100vh;
    overflow: hidden; /* Prevents scrollbars */
    font-family: 'PixChicago', sans-serif; /* Custom font */
    background-color: black;
}

/* Static background container */
.background-container {
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('images/dither.jpg') no-repeat fixed center top; 
    background-size: auto 100vh;  /* Changed to auto 100vh to enable horizontal cropping while maintaining full height */
    image-rendering: pixelated;
}

/* Position the text relative to the fixed background */
.top-left-text {
    position: absolute;
    color: white;
    font-family: 'PixChicago', sans-serif;
    background: rgba(0, 0, 0, 1);
    padding: 10px 20px;
    border: 2px solid white; /* White border */
    /* border-radius: 8px; */
    font-size: 1rem; /* Font size is 3% of the viewport width */
    text-align: center;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%); /* Adjust position by 50% of its width and height */
}

/* Styling for the link */
a {
    color: white;
    text-decoration: underline; /* Keeps the underline style for the link */
}

@font-face {
    font-family: 'PixChicago';
    src: url('fonts/pixChicago.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
