#roomsPage {
  width: 100vw;
  height: 100vh;
  background-color: black;
  perspective: 1000px;
  -webkit-perspective: 1000px;
}

#roomsPageBG {
  width: 100%;
  height: 100%;
  position: fixed;
  background-repeat: no-repeat;
  background-size: 100%;
  background-image: url(../img/pages/roomsBG.png);
  filter: blur(5px) contrast(120%);
}

#roomsList {
  width: 100%;
  height: 80%;
  margin: auto;
  overflow-y: scroll;
  display: flex;
  pointer-events: auto;
  transform: rotateX(15deg);
  border-bottom: 10px solid rgba(185, 202, 207, 0.5);
  align-items: center;
}

.room-card {
  width: 250px;
  height: 300px;
  margin-left: 50px;
  flex: 0 0 auto;
  padding: 8px;
  box-shadow: 5px 5px 10px rgb(0 0 0 / 50%);
  background-color: #EAEAEA;
  font-family: 'Roboto', sans-serif;
  color: #303030;
}

.room-card-title {
  font-weight: 700;
  font-size: 38px;
  text-transform: uppercase;
}

.room-card-property {
  font-weight: 400;
  font-size: 18px;
  margin-bottom: 14px;
  width: 100%;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.room-card-property-set {
  display: flex;
  font-size: 24px;
}

.room-card-property-set-button {
  height: 30px;
  width: 30px;
  padding-top: 5px;
  text-align: center;
  font-size: 22px;
  margin-right: 10px;
}

.room-card-property-set-value {
  height: 30px;
  text-align: center;
  font-size: 30px;
  margin-right: 10px;
}

.room-card-property-set-checkBox {
  width: 30px;
  height: 30px;
  background: #EAEAEA;
  border: 1px solid #303030;
}

.room-card-property-set-checkBox input:checked {
  width: 24px;
  height: 24px;
  background: #303030;
  color: #EAEAEA
}

.room-card-button {
  background-color: #303030;
  display: flex;
  width: 80%;
  height: 40px;
  margin: auto;
  margin-top: 40px;
}

.room-card-button-span {
  margin: auto;
  font-size: 22px;
  color: #EAEAEA;
}

.room-card-string {}

.room-card-button {
  width: 100%;
  height: 40px;
  font-size: 24px;
  display: flex;
  color: white;
}
