html, body {
    overflow: hidden;
    width: 100%;
    height: 100%;
}
body::before {
    content: "";
    position: fixed;
    inset: -50%;
    z-index: -1;
    background-image: url("data:image/svg+xml;utf8, <svg xmlns='http://www.w3.org/2000/svg' width='80' height='80'> <style>text{font-family:Arial, Helvetica, sans-serif; font-weight:700}</style> <text x='0' y='28' font-size='28' fill='rgba(195, 215, 255 ,0.3)'>ABA</text> <text x='0' y='70' font-size='28' fill='rgba(195, 215, 255 ,0.3)'>ABA</text> </svg>");
    background-repeat: repeat;
    background-size: 100px 80px;
    transform: rotate(-15deg);
    transform-origin: center;
    background-color: #ffffff;
}
#bienvenida p{
	text-align: center;
    font-size: 15pt;
	font-weight: 800;
}
#logos {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    width: 100%;
    height: 70%;
    position: inherit;
}
#logos p{
	text-align: center;
    font-weight: 800;
}
#main-logo{
	width: 100%;
}
#main-logo h1{
	text-align: center;
    font-size: 100pt;
    margin: 0px;
}
#sortzaileak, #babesleak {
    width: 100%;
}
#unity-container {
    position: absolute;
    width: 100%;
    height: 100vh
}
#unity-container.unity-desktop {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%)
}
#unity-container.unity-mobile {
    width: 100%;
    height: 100%
}
.unity-mobile #unity-canvas {
    width: 100%;
    height: 100%
}
#unity-loading-bar {
    top: 49%;
    width: 100%;
    display: grid;
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    justify-content: center;
    grid-template-columns: 1fr;
}
#unity-logo {
    width: 154px;
    height: 130px;
    background: url('unity-logo-dark.png') no-repeat center
}
#unity-progress-bar-empty {
    grid-column: 1;
    width: 100%;
    height: 20px;
    margin: 0px;
    overflow: hidden;
    background: url('progress-bar-full-dark.png') no-repeat center;
    background-size: cover;
}
#unity-progress-bar-full {
    width: 0%;
    height: 20px;
    margin: 0px;
    background: url('progress-bar-full-get.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-mobile-warning {
    position: absolute;
    left: 50%;
    top: 5%;
    transform: translate(-50%);
    background: white;
    padding: 10px;
    display: none
}

@media (min-width: 768px) {
  #bienvenida p{
        font-size: 15pt;
    }
    #logos {
        height: 100%;
        grid-template-columns: repeat(3, 1fr);
    }
    #main-logo h1{
        font-size: 80pt;
    }
    
   
    #unity-loading-bar {
        top: 58%;
        grid-template-columns: repeat(3, 1fr);
    }
    #unity-progress-bar-empty {
        grid-column: 2;
    }
}
