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

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

body {
    margin: 0;
    padding: 0;
    width: 100vw;
    overflow: hidden;
    background-color: #202945;
    color: white;
    font-family: 'Futura', sans-serif; /* Aplicar la fuente Futura */
    font-weight: bold;
    line-height: 1.4;
    letter-spacing: 0.04em;
}

.overlay {
    position: fixed; /* Fijo en la pantalla */
    top: 50%; /* Centrado vertical */
    left: 50%; /* Centrado horizontal */
    transform: translate(-50%, -50%); /* Ajuste fino para centrar */
    background-color: rgba(0, 0, 0, 0.8); /* Fondo oscuro semitransparente */
    color: white; /* Texto blanco */
    padding: 20px; /* Espaciado interno */
    border-radius: 10px; /* Bordes redondeados */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); /* Sombra */
    z-index: 1000; /* Asegura que esté por encima de todo */
    font-size: 1.5em; /* Tamaño del texto */
    text-align: center; /* Texto centrado */
}

.ctaDiv {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 99;
}

.imgAlerta{
    width: 125px;
}

.margenTop{
    position: fixed;
    width: 100vw;
    height: 120px;
    top: 0;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.4);
}

.margenDown{
    position: fixed;
    width: 100vw;
    height: 120px;
    bottom: 0;
    box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.4);
}

.loader{
    position: fixed;
    bottom: 35px;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.loader h3{
    margin: 0;
}

#startARButton{
    background-color:white;
    color: #202945;
    padding: 15px 50px;
    border-radius: 10px;
    border: none;
    font-family: 'Futura', sans-serif; /* Aplicar la fuente Futura */
    font-weight: bold;
    font-size: 1.2em;
    margin-top: 30px;
}

#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;
    height: 100vh;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: none;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

#unity-logo {
    width: 280px;
    height: 280px;
    /* height: 200px; */
    background: url('Logo.png') no-repeat center;
    background-size: cover;
}

#unity-progress-bar-empty {
    width: 281px;
    height: 23px;
    margin-top: 10px;
    background: url('LoaderE.png') no-repeat center;
    background-size: cover;
    display: flex;
    align-items: center;
}

#unity-progress-bar-full {
    width: 100%;
    height: 18px;
    background: url('LoaderI.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
}
