/*UNITY*/
#unity-container {
    position: absolute
}

#unity-container.unity-desktop {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%)
}

#unity-container.unity-mobile {
    width: 100%;
    height: 100%
}

#unity-canvas {
    background: #231F20
}

.unity-mobile #unity-canvas {
    width: 100%;
    height: 100%
}

#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-light.png') no-repeat center
}

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

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

#unity-footer {
    position: relative
}

.unity-mobile #unity-footer {
    display: none
}

#unity-webgl-logo {
    float: left;
    width: 204px;
    height: 38px;
    background: url('webgl-logo.png') no-repeat center
}

#unity-build-title {
    float: right;
    margin-right: 10px;
    line-height: 38px;
    font-family: arial;
    font-size: 18px
}

#unity-fullscreen-button {
    float: right;
    width: 38px;
    height: 38px;
    background: url('fullscreen-button.png') no-repeat center
}

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

/*INDEX SCREEN*/
@font-face {
    font-family: 'RobotoCondensed';
    src: url('fonts/RobotoCondensed-Light.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'CyrulikSharp';
    src: url('fonts/Cyrulik-Sharp.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

html {
    height: -webkit-fill-available;
}

body {
    background-color: #CEC9B3;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    min-height: -webkit-fill-available;
    width: 100vw;
    overflow: hidden;
}

.ctaDiv {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: top;
    position: absolute;
    top: 15vh;
    left: 30px;
    right: 30px;
    z-index: 99;
    /*gap: 20px;*/
}

.cta-button {
    margin-top: 20px;
    width: 160px;
    background-color: #68A8C1;
    color: black;
    font-family: "CyrulikSharp";
    padding: 6px;
    border: none;
    border-radius: 18px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    transition: background-color 0.3s ease;
}

.ctaDiv p {
    letter-spacing: -0.5px;
    font-family: "CyrulikSharp";
    line-height: 1.2em;
    color: #333;
    text-align: center;
}

.ctaMainText {
    font-size: 1.5em;
}

.ctaSubText {
    font-size: 1.1em;
}

.cta-button .mainText {
    font-size: 2em;
}

.cta-button .subText {
    font-size: 1.5em;
}

.footer {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 230px;
    font-family: "RobotoCondensed";
    color: #666;
     gap: 10px; 
    padding: auto;
    margin-top: 20vh;
}

.footer span {
    text-align: left;
    display: flex;
    font-size: 0.65em;
    line-break: strict;
}

.footer img {
    vertical-align: middle;
    height: 25px;
}

.separator {
    background-color: black;
    height: 2px;
    width: 100px;
    border-radius: 2px;
    justify-content: center;
}
