body {
    background: #073C90;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    height: 100vh;
    overflow-x: hidden;
}
html {
    background: #073C90;
}
.body-container {
   
    min-height: 100vh;
    display: flex;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    align-items: center;

    margin: 0 auto;
    background: radial-gradient(circle,rgba(7,29,60,1) 0%, rgba(7,60,144,1) 100%);
    background-position: bottom;
    background-attachment: fixed;
}

* {
    user-select: none;
}

body, html {
    height: auto;
}

.container {
    height: 100%;
    width: 100%;
    overflow-x: hidden;
    background: linear-gradient(0, #071D3C, #073C90);
}

#unity-container {
    aspect-ratio: 16/9;
    max-height: 100vh;
   max-width: 100vw;
    margin-top:43px;
}

.body-header {
    display: flex;
    gap:24px;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
}

.first-screen__button-cont {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    height: 240px;
}

.first-screen__button-cont button {
    max-width: 380px;
    height: 340px;
    transform: rotate(-5deg);
    background: none;
    border:none;
}
.button-img {
    cursor: pointer;
    width: 100%;
}

.arrows {
    width: 190px;
    height: 240px;
}
.arrows:nth-child(1) {
    background-image: url('./TemplateData/leftside.svg');
}

.arrows:last-child {
    background-image: url('./TemplateData/rightside.svg');
}

.header {
    display: flex;
    justify-content: end;
    width: 100%;
}

.header img {
    width: 40px;
}

.header-title {
    font-weight: 700;
    font-size: 70px;
    line-height: 100%;
    text-align: center;
    color: #fff;
}

.loading {
    min-height: 100vh;
    background: #012F6E;
}

.arrows-mobile {
    display: none;
    justify-content: space-between;
}

@media (max-width: 890px) {
    .first-screen__button-cont {
        flex-direction: column;
        height: auto;
    }

    .arrows {
        display: none;
    }
    .arrows-mobile {
        display: flex;
    }
    body {
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: none;
    }
    .arrows {
        width: 347px;
        height: 119px;
    }

    .arrows:nth-child(1) {
        background-image: url('./TemplateData/upmobile.svg');
    }
    
    .arrows:last-child {
        background-image: url('./TemplateData/downmobile.svg');
    }
    .first-screen__button-cont button {
        max-width: 282px;
        height: 170px;
        margin-top: 3vh;
    }
    .arrows-mobile.down {
        width: 90%;
    }
    .arrows-mobile.down img:nth-child(2) {
        margin-left: -16px;
    }  

    .arrows-mobile.up {
        width: 120%;
    }
    .arrows-mobile.up img:nth-child(2) {
        margin-right: 43px;
    }
    .first-screen {
        max-width: 375px;
        padding: 0 13px;
        overflow: hidden;
        display: flex;
        gap:3.5vh;
    }
    .first-screen-text {
        font-size:32px;
        margin-top: 13px;
    }
    .header-title {
        font-size:35px;
    }
    .down-text {
        display: flex;
        flex-direction: column;
        margin-top: 16px;
        text-align: center;
    }
    #unity-container {
        max-height: 94vh;
        margin-bottom: 3.5vh;
        border-radius: 15px;
        margin-top: 5.5vh;
    }
}

@media(max-height:680px) and (max-width:850px) {
    .first-screen-text {
        font-size:25px!important;
    }
    .header-title {
        font-size: 30px!important;;
    }
    .arrows-mobile {
        height: 85px;
    }
    .first-screen__button-cont button {
        max-width: 251px;
        height: 152px;
        margin-top: 1vh;
    }
    .header img {
        width: 30px;
    }
}

@media(max-height:600px) and (max-width:850px) {
    .first-screen-text {
        font-size:25px!important;
    }
    .header-title {
        font-size: 24px!important;;
    }
    .arrows-mobile {
        height: 70px;
    }
    .first-screen__button-cont button {
        max-width: 205px;
        height: 132px;
    }
    .header img {
        width: 25px;
    }
    .first-screen-text {
        margin-top: 4px;
    }
}

@media(max-height:500px) and (max-width:850px) {
    .first-screen-text {
        font-size:24px!important;
    }
    .header-title {
        font-size: 23px!important;;
    }
    .arrows-mobile {
        height: 65px;
    }
    .first-screen__button-cont button {
        max-width: 185px;
        height: 112px;
    }
    .header img {
        width: 25px;
    }
    .first-screen-text {
        margin-top: 4px;
    }
    .first-screen {
        transform: scale(0.98);
    }
}

@media (max-height: 680px) and (min-width:850px) {
    .first-screen {
        margin-top: 0;
        justify-content: center;
        transform: scale(0.8);
    }
}

@media (max-height: 500px) and (min-width:850px) {
    .first-screen {
        margin-top: 0;
        justify-content: center;
        transform: scale(0.6);
    }
}
@media (min-width:850px) {
    #unity-container {
        margin-top: 0!important;

        aspect-ratio: 16/9;
    }
}
