@import url('https://fonts.googleapis.com/css2?family=Lato&family=Open+Sans:ital@1&display=swap');

* {
    box-sizing: border-box;
}

body {
    background-color: slategray ;
    display: flex;
    flex-direction: column;
    color: white;
    align-items: center;
    justify-content: center;
    height: 100vh;
    font-family: 'Lato', sans-serif;
    margin: 0;
}

.movie-container {
    margin: 20px 0;
}

.movie-container select {
    background-color: white;
    border: 0;
    border-radius: 5px;
    font-size: 14px;
    margin-left: 10px;
    padding: 5px 15px 5px 15px;
    appearance: none;
    /* -moz-appearance: none;
    -webkit-appearance: none; */
}

.seat {
    background-color: darkgray;
    height: 12px;
    width: 15px;
    margin: 4px;
    border-radius: 8px 8px 0px 0px;
}

.seat.selected {
    background-color: aqua;
}

.seat.occupied {
    background-color: white;
}

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

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

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

.legend{
    background-color: rgba(0, 0, 0, 0.1);
    padding: 5px 10px;
    border-radius: 5px;
    color: lightgray;
    list-style-type: none;
    display: flex;
    justify-content: space-between;
}

.legend li{
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 10px;
}

.legend li small {
    margin-left: 3px ;
}

.legend .seat:not(.occupied):hover{
    cursor : default;
    transform: scale(1);
}

.row {
    display: flex;
}

.container{
    perspective: 900px;
    margin-bottom: 30px;
}

.screen {
    background-color: white;
    height: 70px;
    width: 100%;
    margin: 15px 0px;
    transform: rotateX(-45deg);
    box-shadow: 0 3px 10px rgba(255, 255, 255, 0.7);
}

p.text{
    margin: 5px 0px;
}

p.text span{
    color: aqua;
}