body { 
    padding: 0; 
    margin: 0;
    width: 100%;
    position: fixed;
    height: 100%;
}

input, textarea {
  font-size: 16px;
}

#unity-container { 
    position: fixed; 
    width: 100%; 
    height: 100%; 
    display: flex;
    background-color: #000000;
}

#unity-canvas { 
    margin: 0 auto; 
    width: 46.25vh; 
    height: 100vh; 
    background: #231F20;
}

/* Media query for mobile devices */
@media (max-width: 768px) {
    #unity-canvas {
        width: 100vw; /* Adjust width to full screen */
        height: 100vh; /* Adjust height to full screen */
        height: 100%;
        position: fixed;
        width: 100%;
        left: 0;
        top: 0;
    }
}

#unity-loading-bar { 
    position: absolute; 
    left: 50%; 
    top: 50%; 
    transform: translate(-50%, -50%); 
    display: none;
}

#unity-logo { 
    width: 154px; 
    height: 130px; 
    background: url('unity-logo-dark.png') no-repeat center;
    background-size: contain;
}

#unity-progress-bar-empty { 
    margin-left: auto; 
    margin-right: auto; 
    width: 141px; 
    height: 18px; 
    margin-top: 10px; 
    background: url('progress-bar-empty-dark.png') no-repeat center;
}

#unity-progress-bar-full { 
    width: 0%; 
    height: 18px; 
    margin-top: 10px; 
    background: url('progress-bar-full-dark.png') no-repeat center;
}

#unity-warning { 
    position: absolute; 
    left: 50%; 
    top: 5%; 
    transform: translate(-50%); 
    background: white; 
    padding: 10px; 
    display: none;
}

input[type="text"]
{
    /* enlarge by 16/12 = 133.33% */
    border-radius: 6.666666667px;
    font-size: 16px;
    line-height: 26.666666667px;
    padding: 6.666666667px;
    width: 133.333333333%;

    /* scale down by 12/16 = 75% */
    transform: scale(0.75);
    transform-origin: left top;

    /* remove extra white space */
    margin-bottom: -10px;
    margin-right: -33.333333333%;
}
