@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    overflow: hidden;
} 

.container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    width: 100%;
    background-color: #303030;
}

@keyframes growthAnimation {
    from {transform: scale(0.6); top: 220px;}
    to {transform: scale(1); top: 0;}
}

@keyframes growthAnimationPhone {
    from {transform: scale(0.4); top: 170px;}
    to {transform: scale(0.67); top: 0;}
}

.cinema {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    animation-name: growthAnimation;
    animation-duration: 0.6s;
    animation-iteration-count: 1;
}

.screen-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.screen {
    height: 220px;
    width: 500px;
    background-color: white;
    border-radius: 5px;
    box-shadow: 0 0 20px white;
}

.chairs-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 380px;
    column-gap: 30px;
    margin-bottom: 30px;
}

.chairs {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
}

.chair-line {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 10px;
}

.chair {
    height: 35px;
    width: 35px;
    background-color: #5d626d;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.05s ease;
}

.chair:hover {
    transform: scale(1.2);
}

.chair-full {
    height: 35px;
    width: 35px;
    background-color: white;
    border-radius: 8px;
}

.chair-select {
    background-color: #f3960a;
}

.movie-options-container {
    margin-bottom: 30px;
}

#movie-options {
    width: 180px;
    height: 40px;
    background-color: #424242;
    border: 3px solid #4b4b4b;
    border-radius: 10px;
    color: white;
    padding-left: 5px;
    font-size: 17px;
}

.color-names-container {
    display: flex;
    column-gap: 10px;
}

.color-names {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 40px;
    background-color: rgb(26, 26, 26, .4);
    padding: 10px 20px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.color-name-text {
    color: gray;
    font-size: 18px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 5px;
}

.color-name-box {
    height: 25px;
    width: 25px;
    background-color: white;
    border-radius: 5px;
}

.color-box-orange {
    background-color: #f3960a;
}

.color-box-gray {
    background-color: #5d626d;
}

.price-calculator {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(26, 26, 26, .4);
    padding: 10px 20px;
    font-size: 22px;
    font-weight: 400;
    color: white;
    border-radius: 10px;
    text-align: center;
}

.price-calculator-text-number, .price-calculator-price {
    color: #f3960a;
}

.reset-btn-container {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(26, 26, 26, .4);
    height: 47px;
    padding: 0px 10px;
    border-radius: 10px;
    column-gap: 5px;
}

.reset-btn {
    height: 35px;
    width: 35px;
    font-size: 20px;
    font-weight: 500;
    border: none;
    border-bottom: 3px solid #474b53;
    border-right: 1px solid #474b53;
    border-radius: 10px;
    background-color: #5d626d;
    color: white;
    cursor: pointer;
    transition: 0.3s ease;
}

.reset-btn:hover {
    transform: scale(1.08);
}

.reset-btn-text {
    color: gray;
    font-weight: 500;
    font-size: 18px;
}

@media only screen and (max-width: 550px){
    .cinema {transform: scale(0.67);     animation-name: growthAnimationPhone; animation-duration: 0.6s; animation-iteration-count: 1;}
    .movie-option {font-size: 11px;}
}