html, body {
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    margin: 0;
    padding: 0;
    position: absolute;
    background-color: #FFE8D5;
}

/* Default styles for mobile (using vw) */
div#title {
    width: 69vw; /* Changed to vw */
    height: 5vw; /* Changed to vw */
    margin: 0 auto;
    position: relative;
    border: 0;
    margin-top: 10vh; /* Stays as vh*/
    text-align: center;
    color: #FF8364;
    font-size: 4vw; /* Changed to vw */
    font-family: 'Courier New', Courier, monospace;
    font-weight: bolder;
}

h1 {
    color: #FF8364;
    font-size: 4vw; /* Changed to vw */
    font-family: 'Courier New', Courier, monospace;
}

div#main_container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    gap: 1px 1px;
    background-color: #FF8364;
}

div#maze_container {
    width: 69vw; /* Changed to vw */
    height: 69vw; /* Changed to vw */
    margin: 0 auto;
    position: relative;
    border: 0;
    border-radius: 0;
    margin-top: 0;
}

/* Media query for desktop (using vh) */
@media (min-width: 768px) {
    div#title {
        width: 69vh; /* Revert to vh */
        height: 5vh; /* Revert to vh */
        margin-top: 10vh; /* Revert to vh */
        font-size: 4vh; /* Revert to vh */
    }

    h1 {
        font-size: 4vh; /* Revert to vh */
    }

    div#maze_container {
        width: 69vh; /* Revert to vh */
        height: 69vh; /* Revert to vh */
    }
}