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

* {
margin: 0;
padding: 0;
font-family: 'Economica', sans-serif;
}

body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height:100vh;
  background-color: rgba(19, 48, 41, 1);
  color:white;
}

.showcontainer {
  margin: 1%;
  padding: 1%;
  border: 1px white solid;
}


.moviechoice h3 {
  width: 60%;
  margin: 2% auto;
  text-align: center;
  font-size: 150%;
}

.moviechoice select {
  width: 100%;
  margin: 2% auto;
  text-align:center;
  font-size: 120%;
  border-radius: 5px;
}

.showcase ul {
display: flex;
justify-content: center;
align-items: center;
margin: 2%;
}

.showcase ul li {
list-style-type: none;
margin:5%;
font-size: 120%;
text-align: center;
}

.seat {
  width: 20px;
  height: 20px;
  background-color:white;
  margin:5px;
  border-top-left-radius:5px;
    border-bottom-right-radius:5px;
    transition: transform .5s;
}

.sseat {
  width: 20px;
  height: 20px;
  background-color:white;
  margin:5px;
  border-top-left-radius:5px;
    border-bottom-right-radius:5px;
}

.sseat.selected,.seat.selected {
  background-color: green;
}
.sseat.occupied,.seat.occupied {
  background-color: red;
}

.row {
  display: flex;
  justify-content: center;
  align-items: center;
}

.seat:nth-of-type(2) {
  margin-right: 20px;
}

.seat:nth-last-of-type(2) {
  margin-left: 20px;
}

.seat:not(.occupied):hover {
  cursor: pointer;
  transform: scale(1.3);
}

.showcase.seat.occupied:hover {
  cursor:default;
}

.showcase {
  background-color: rgba(89, 89, 89, .4);
  width: 80%;
  margin: auto;
  border-radius: 5px;
}
p{
  margin: 2% auto;
  font-size: 150%;
}

#count,#total {
  color:orange;
}

.screen {
background-color: white;
width: 80%;
height: 70px;
margin: 5% auto;
box-shadow: 0 3px 10px white;
transform: rotateX(-45deg);
}
.container {
  perspective: 500px;
  margin:5%;
}
