body {
    padding: 0; 
    margin: 0; 
    overflow: hidden;
}

body, #__next {
    touch-action: pan-x pan-y; 
}

    #unity-container { 
    position: absolute;
    z-index: 0;
}

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

#unity-container.unity-mobile { 
    position: fixed; 
    width: 100%; 
    height: 100%; 
    z-index: 0;
}
#unity-canvas { 
    z-index: 0;
}

.unity-mobile #unity-canvas { 
    width: 100%; 
    height: 100%;
    z-index: 0;
}
#unity-warning { 
    position: absolute; 
    left: 50%; 
    top: 5%; 
    transform: translate(-50%); 
    background: white; 
    padding: 10px; 
    display: none 
}


/* Customization */
@font-face {
    font-family: "Nunito";
    src: url('Nunito-Regular.ttf') format('truetype');
}


.wave {
    position: absolute;
    width:600px;
    height: 105px;
    background: url('wave.png') repeat;
    z-index: 1;
}




.text-container {
    display: flex;
    justify-content: center;
    align-items: center;

    position: absolute;
    bottom: 3%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 80%;
    max-width: 600px;
    font-size: 1.3em;
    z-index: 50;
    font-family: Nunito;
}



.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    
    height: 100vh;
    width: 100%;
    
    z-index: 5;

    position: absolute;
    top: 0;
    left: 0;
}

.logo-container img {
    max-width: 400px;
    width: 90%;
    height: auto;
    z-index: 5;
}



.shark-fin {
    position: absolute;
    left: 50%;
    bottom: 15%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.shark-fin img
{
    max-width: 160px;
    height: auto;
    z-index: 2;
}


.background {
    background-image: url('blue_bg.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}