body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    width: 100vw;
    background: black;
    overflow: hidden;
    font-family: 'PixChicago', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
}

.content-wrapper {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: visible;
}

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

.links-wrapper {
    position: absolute;
    top: 65%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    background: white;      /* Changed from rgba */
    border: 2px solid black;
    border-radius: 8px;
    padding: 0px 0px;
    min-width: 160px;
    min-height: 120px;
    z-index: 1;            /* Added */
    justify-content: center;
    
}

.hyperlink-text {
    color: black;
    text-decoration: none;
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
    font-size: 10px;
}

.hyperlink-text:hover {
    background: black;
    color: white;
}

.welcome-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 0px 30px;
    background-color: white;
    color: black;
    border: 2px solid black;
    font-size: 16px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    width: 330px;
    z-index: 1;            /* Added */
}

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