@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');

body {
    padding: 0;
    margin: 0;
    overflow-y:hidden;
}
#unity-container {
    position: absolute;
    background-image: linear-gradient(to bottom, #1a162d,#1a162d,#282246);
    height: 100%;
    width: 100%;
}

#unity-canvas.unity-desktop {
    /*width: 23%;
    height: 90%;*/
    width: 100%;
    height: 100%;
    position: absolute;
    /*border: 1px solid white;
    border-radius: 35px;*/
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%)
}
#unity-canvas.unity-mobile {
    width: 100%;
    height: 100%;
}

#game-container {
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
#logo.unity-mobile {
    border-radius: 20px;
    height:250px;
    width:250px;
}
#logo.unity-desktop {
    border-radius: 20px;
    height:200px;
    width:200px;
}
#loading-text.unity-mobile {
    font-size: 25px;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    height: 10px;
    margin-top: 100px;
}
#unity-loading-bar {
    background-color: rgb(255 255 255 / 0.2);
    border-radius: 10px;
    width: 350px;
    height: 10px;
    margin-top: 30px;
}
#unity-progress-bar {
    background-color: white;
    border-radius: 10px;
    transition: 400ms linear;
    height: 100%;
}

#popup.unity-desktop {
    position: absolute;
    background-color: rgb(76, 73, 73,0.9);
    flex-direction: column;
    align-items: center;
    justify-items: center;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    /*width: 23%;
    height: 90%;*/
    width: 100%;
    height: 100%;
    /*border: 1px solid white;
    border-radius: 35px;*/
}
#popup.unity-mobile {
    position: absolute;
    background-color: rgb(76, 73, 73,0.9);
    flex-direction: column;
    align-items: center;
    justify-items: center;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
}

#claimReward.unity-mobile {
    width: 70%;
    height: 35%;
    border-radius: 20px;
    background-color: black;
    position: absolute;
    top: 25%;
}
#claimReward.unity-desktop {
    width: 25%;
    height: 50%;
    border-radius: 20px;
    background-color: black;
    position: absolute;
    top: 10%;
}
#claim-img{
    width: 50%;
    height: 50%;
    margin-left: 20%;
    margin-right: 20%;
    margin-top: 10%;
}
#reward-text.unity-mobile {
    border-radius: 10px;
    background-image: linear-gradient(90deg, rgb(54, 52, 52, 0.80), #cb902a, rgb(54, 52, 52, 0.80));
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    margin: 5%;
    padding: 3%;
    text-align: center;
    color:white;
}
#reward-text.unity-desktop {
    border-radius: 10px;
    background-image: linear-gradient(90deg, rgb(54, 52, 52, 0.80), #cb902a, rgb(54, 52, 52, 0.80));
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    margin: 5%;
    padding: 3%;
    text-align: center;
    color:white;
}
#tapToContinue {
    color: white;
    position: absolute;
    bottom: 15%;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

#fullscreen-popup{
    width: 100vw;
    height: 100vh;
    background-color: black;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-direction: column;
}
#rotate-info {
    color: white;
    text-align: center;
    margin: 0 20px;
    padding-bottom: 100px;
    font-family: 'Poppins', sans-serif;
}

#back-button.unity-desktop {
    position: absolute;
    left: 5%;
    top: 5%;
    height: 25px;
    width: 25px;
    background-color: rgba(255,255,255,0.4);
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
}
#back-button > a:active{
    user-select: none;
    text-decoration: inherit;
    color: inherit;
    cursor: pointer;
}
#back-button > a:link{
    user-select: none;
    text-decoration: inherit;
    color: inherit;
    cursor: pointer;
}
#back-button > a:visited{
    user-select: none;
    text-decoration: inherit;
    color: inherit;
    cursor: pointer;
}
