* {
    box-sizing: border-box;
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    font-family: Arial, Helvetica, sans-serif;
    background-color: rgb(37, 36, 48);
    color: white;
    margin: 0;
    font-size: 20px;
}

.movie-container {
    margin-bottom: 30px;
}

#movie {
    margin-left: 10px;
    font-size: 20px;
    border-radius: 5px;
}

.showcase {
    margin-bottom: 25px;
    background-color: rgba(13, 3, 41, 0.473);
    margin-top: 25px;
    padding: 5px 1px;
    display: flex;
    justify-content: space-between;
}
.showcase li {
    display: flex;
    font-size: 15px;
    align-items: center;
    justify-content: center;
    margin: 0 10px;
}

.seat {
    background-color: rgb(63, 63, 63);
    height: 12px;
    width: 14px;
    margin: 3px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.seat.selected {
    background-color: rgb(36, 126, 243);
}

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

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

.container {
    perspective: 1000px;
}

.screen {
    background-color: whitesmoke;
    height: 70px;
    width: 100%;
    transform: rotateX(-45deg);
    box-shadow: 0px 5px 11px silver;
    margin-bottom: 15px;
}

.row {
    display: flex;
}

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

.text {
    margin-top: 40px;
    font-size: 17px;
}
.text span {
    color: greenyellow
}

