body {
    overflow: hidden;
    margin: 0px;
    font-family: Rajdhani-Bold;
}

#rotate-warning {
    position: relative;
    display: none;
    width: 100vw;
    height: 100vh;
    justify-content: center;
    align-items: center;
    background: url(./images/Splash_Screen_Mobile.jpg) no-repeat;
    background-size: 100% 100%;
    background-color: #43d4f6;
    z-index: 1;
}

#rotate-img {
    background-image: url('./images/rotate-icon.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 100vw;
    height: 40vh;
}

#loading {
    position: relative;
    display: flex;
    width: 100vw;
    height: 100vh;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

/* Portrait orientation */
@media screen and (orientation: portrait) {
    #loading {
        background: url(./images/Splash_Screen_Mobile.jpg) no-repeat;
        background-size: 100% 100%;
        background-color: #43d4f6;
    }
}

/* Landscape orientation */
@media screen and (orientation: landscape) {
    #loading {
        background: url(./images/Splash_Screen.jpg) no-repeat;
        background-size: 100% 100%;
        background-color: #43d4f6;
    }
}

#roomId {
    color: white;
    position: absolute;
    top: 2%;
    font-size: 2.5vh;
    left: 9%;
    /* Safari */
    -webkit-user-select: none;
    /* IE 10 and IE 11 */
    -ms-user-select: none;
    /* Standard syntax */
    user-select: none;
}

.progress {
    width: 35vh;
    height: 4vh;
    margin: 10px;
    position: relative;
    background: url(./images/loadingbar_unfill.png) no-repeat;
    background-size: 100% 100%;
    /* border: 1px solid black; */
    /* border-radius: 25px; */
    bottom: -10%;
    display: flex;
    justify-content: left;
    align-items: center;
    padding: 0.5%;
}

.logo {
    width: 35%;
    height: 30%;
    position: relative;
    background-size: contain;
    background-image: url('./images/Logo.png');
    background-repeat: no-repeat;
    background-position: center;
    margin: 10px;
    top: -10%;
}

.loading-items {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
}

.loading-text {
    text-align: center;
    font-size: 3vh;
    color: white;
    font-family: Rajdhani-Bold;
}

button:hover {
    scale: 1.1;
}

button:active {
    scale: 0.9;
}

#progressbar {
    width: 0%;
    transition: width ease-out .5s;
    height: 4vh;
    /* border-radius: 25px; */
    background: url(./images/loadingbar_fill.png) no-repeat;
    background-size: 100% 100%;
    /* background-color: #39C495;
    background-image: linear-gradient(135deg,
            rgba(255, 255, 255, .3) 25%,
            transparent 25%,
            transparent 50%,
            rgba(255, 255, 255, .3) 50%,
            rgba(255, 255, 255, .3) 75%,
            transparent 75%,
            transparent);
    background-size: 50px 50px;
    animation: progressanim 2s linear infinite; */
}

/* touch-pad.css */
body {
    background-color: #000000;
}

.movement-pad {
    position: absolute;
    bottom: 150px;
    left: 10px;
}

.movement-pad .region {
    position: absolute;
    width: 100px;
    height: 100px;
    background: url("./images/UI/joystick_controller.png") center center no-repeat;
    /* radial-gradient(rgba(218, 225, 230, 0.25) 5%, rgba(218, 225, 230, 0.50) 95%), */
    /* border: 2px solid rgba(218, 225, 230, 0.25); */
    border-radius: 90px;
    box-shadow: 0px 0px 5px rgba(194, 200, 204, 0.55);
    user-select: none;
    background-size: cover;
}

.movement-pad .handle {
    /* opacity: 0.1; */
    position: absolute;
    height: 30px;
    width: 30px;
    top: 0px;
    left: 0px;
    background: url("./images/UI/joystick_center.png") center center no-repeat;
    background-size: contain;
    /* radial-gradient(rgba(215, 225, 255, 0.70) 0%, rgba(215, 225, 255, 0.50) 100%); */
    /*border: 1px solid rgba(145, 105, 245, 0.90);*/
    /* border-radius: 50%;
	box-shadow: 0px 0px 7px rgba(195, 205, 245, 0.9); */
    text-align: center;
    font: 24px/44px "Courier New", Courier, monospace;
    user-select: none;
}


@keyframes progressanim {
    0% {
        background-position: 50px 50px;
    }

    100% {
        background-position: 0 0;
    }
}

@font-face {
    font-family: Antimatter;
    src: url('./font/Antimatter.ttf');
}

@font-face {
    font-family: Rajdhani-Bold;
    src: url('./font/Rajdhani-Bold.ttf');
}

@font-face {
    font-family: Rajdhani-SemiBold;
    src: url('./font/Rajdhani-SemiBold.ttf');
}