@font-face {
 font-family: Righteous-Regular;
 src: url(./assests/Font/Righteous-Regular.ttf) format('truetype');
}

@font-face {
 font-family: Manrope-ExtraBold;
 src: url(./assests/Font/Manrope-ExtraBold.ttf) format('truetype');
}

*{
 margin: 0;
 padding: 0;
 box-sizing: border-box;
 font-weight: normal;
}

body{
 background-color: #242132;
}
/*----Scoll-Bar*----*/

body::-webkit-scrollbar{
	width: 12px;

}
body::-webkit-scrollbar-track{
	background: #181818;
}
body::-webkit-scrollbar-thumb{
	background-color: #01B8E0;
	border-radius: 20px;
	border: 3px solid #181818;
}


.game{
 display: flex;
 flex-direction: column;
 justify-items: center;
 align-items: center;
 height: 100vh;
}

.title-bar{
 height: 20vh;
 display: flex;
 justify-content: space-around;
 align-items: center;
 width: 100%;
 background-color: #AE8CFA;
 font-family: Righteous-Regular;
 font-size: 20px;
 box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.25);
 text-shadow: 0px 0px 50px rgba(0, 0, 0, 0.5);
 color: #242132;
}



.box{
 display: flex;
 flex-direction: column;
 justify-content: space-around;
 align-items: center;
 margin-top: 50px;
}

img{
 margin: 85px 85px 30px 85px;
 width: 220px;
 height: auto;
}

.computer-choice{
 transform: rotateY(180deg);
}

button{
 width: 150px;
 height: 50px;
 background: none;
 border: none;
 font-size: 20px;
 margin: 30px;
 font-family: Manrope-ExtraBold;
 color: #242132;
 background: #AE8CFA;
 border: 3px solid #CBC6D7;
 box-shadow: 0px 0px 30px rgba(116, 108, 254, 0.5);
 border-radius: 10px;
}

.result{
 font-size: 30px;
 font-family: Manrope-ExtraBold;
 text-shadow: 0px 0px 50px rgba(0, 0, 0, 0.5);
 color:#927AD3;
 margin: 10px;
}

.img-box{
    display: flex;
}

#back-btn{
			position: relative;
			left: -700px;
			bottom: -400px;
			height: 50px;
			width: 50px;
			
		}
#back-img{
	position: absolute;
	height: 100%;
	width: 100%;
	object-fit: cover;
}
/* Logo */

.logo-header{
    width: 100%;
    height: 100px;
    background-color: #292929;
    display: flex;
    justify-content: space-between;
    align-items: center;
	
}

.darshan-logo{
    position: relative;
    height: 100%;
    width: 150px;
	margin-left: 30px;
}
.aswdc-logo{
    position: relative;
    height: 100%;
    width: 120px;
	margin-right: 30px;
}
.darshan-logo img{
    height: 100%;
    width: 100%;
    object-fit: contain;
	margin: 0px;

}
.aswdc-logo img{
    height: 100%;
    width: 100%;
    object-fit: contain;
	margin: 0px;
}