@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Courgette&family=Kdam+Thmor+Pro&family=M+PLUS+1+Code:wght@300&family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=PT+Sans:ital,wght@0,400;0,700;1,400;1,700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Raleway:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:wght@300&family=Work+Sans:ital,wght@0,100;0,200;0,300;0,400;1,100;1,200;1,300;1,400&display=swap');
@import url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css);
@import './reset.css';
@import './resetWindow.css';

body {
  font-family: 'Courier New', Courier, monospace;
  background-color: rgba(30, 30, 30);
}

#root {
  display: grid;
  width: 95vw;
  margin: 0 auto;
  grid-template-columns: 125px 1000px 125px;
  grid-template-areas:
    'leftSide middle rightSide'
    'leftSide middle rightSide';
  height: auto;
  justify-content: center;
  min-width: max-content;
  /* min-height: max-content; */
  /* max-width: auto; */
  /* max-height: auto; */
}
.leftSide {
  /* font-family: 'Bebas Neue'; */
  display: flex;
  flex-direction: column;
  text-align: center;
  grid-area: leftSide;
  color: white;
}
.current,
.best {
  margin: 130px auto;
  font-size: 25px;
  text-transform: uppercase;
  /* font-weight: 500; */
}
.middle {
  display: flex;
  flex-direction: column;
  gap: 15px;
  grid-area: middle;
  background-color: rgb(15, 15, 15);
}
.rightSide {
  grid-area: rightSide;
}
.game-background-choses {
  display: flex;
  width: 98%;
  height: 100px;
  margin: 0 auto;
  overflow-y: hidden;
  overflow-x: scroll;
}
.game-background-choses::-webkit-scrollbar {
  height: 10px;
  background-color: transparent;
  border-radius: 30px;
}
.game-background-choses::-webkit-scrollbar-thumb {
  background-color: rgba(110, 98, 98, 0.5);
  border-radius: 30px;
}
.board-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 98%;
  /* height: 70%; */
  margin: 0 auto 20px auto;
  border: 2px solid rgba(255, 255, 255, 0.863);
  position: relative;
}
#board {
  width: 100%;
  height: 100%;
  filter: blur(0px);
  transition: filter 1s;
  background-image: url(../images/one.jpg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.fa-palette,
.fa-brush {
  background-color: transparent;
  font-size: 50px;
  padding: 10px;
  height: 60%;
  margin: auto auto;
  background: -webkit-linear-gradient(
    rgba(255, 0, 0, 0.397),
    rgba(255, 246, 246, 0.397),
    rgb(255, 255, 255)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.img-c {
  display: inline-block;
  width: 90px;
  height: 60px;
  margin: auto auto;
}
.img-c img {
  border-radius: 30%;
  width: 150%;
  height: 70px;
  margin: auto auto;
  object-fit: cover;
  transition: 0.3s;
}
.img-c img:hover {
  transform: scale(1.05);
}
.drop-down-images {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
