@font-face {
    font-family: 'Mystery Quest';
    src: url("../fonts/MysteryQuest-Regular-uiny3W9.ttf") format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    background-color: #f0f0f0; /* Light gray background for the "empty" space on desktop */
    margin: 0;
    padding: 0;
    font-family: 'Mystery Quest', sans-serif;
    display: flex;
    justify-content: center;
}

.container {
    width: 100%;
    max-width: 500px; /* Mobile-like width on desktop */
    min-height: 100vh;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
    position: relative;
    background-color: transparent;
}

/* Background image setup (simulated mobile view) */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 500px; /* Matches container max-width */
    height: 100%;
    z-index: -1;
    background-image: url("../images/background-gfPnyag.jpg");
    background-repeat: repeat-y;
    background-size: 100% auto;
    opacity: 0.2;
}
