body{
    background-color: #292929;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
    color: #fff;
}

.seat {
    background-color: #444451;
    height: 15px;
    width: 15px;
    margin: 3px;
    margin-top: 4px;
    border-radius: 5px;
}

.seat.selected {
    background-color: #f6eb6f;
}

.seat.reserved {
    background-color: #2196f3;
}

.seat:nth-of-type(2) {
    margin-right: 20px;
}

.seat:nth-last-of-type(3) {
    margin-right: 20px;
}

.seat:not(.reserved):hover {
    cursor: pointer;
    transform: scale(1.3);
}

.row {
    display: flex;
}

.screen {
    background-color: #ffff;
    height: 50px;
    width: 100%;
    margin: 20px 0;
    box-shadow: 0 3px 8px rgba(255, 255, 255, 0.7);
}

.movie-list{
    margin: 20px 0;
}

.info {
    background-color: rgba(0,0, 0, 0.2);
    padding: 5px 40px 5px 0px; 
    color: #777;
    display: flex;
}

.info li {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 40px;
}

.info li div span{
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 38px;
}

p.text span {
    color: #f6eb6f;
}

p.screen-text {
    color: #292929;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 74px;
}