:root {
    --primary-color: #29335c;
    --light-primary: #3f4f8d;
    --ligthest-color: #e9ebd5;
    --secondary-color: #774936;
    --light-secondary: #b07e64;
}

@media (max-width:600px){
    :root {
        font-size: 10px;
    }
}

#modal-overlay {
    display: flex;
    position:fixed;
    top: 0%;
    left: 0%;
    width: 100vw;
    height: 100dvh;
    justify-content:center;
    align-items:center;
}

.overlay {
    visibility: hidden;
    transition: all 0.6s ease;
    opacity: 0;
}

.open {
   visibility: visible;
   opacity: 1;
}

#modal-background {
    background-color: var(--light-primary);
    width: 100%;
    height: 100%;
    position:absolute;
    z-index: 0;
    opacity: 0.4;
}

#modal-container {
    display:flex;
    flex-direction: column;  
    z-index: 1;
    background-color: var(--ligthest-color);   
    border-radius: 10px;     
}

#movie-title{
    padding: 1rem 0;
}

#modal-body{
  
    display:flex;
    justify-content: center;    
}

#movie-poster{
    width: 100%;
    padding: 0 5px 2px 5px;
    border-radius: 15px;   
}

#movie-info{
    display: flex;
    flex-direction: column;
    justify-content:space-between;
    max-width: 300px;
    padding: 5px;
}

#add-to-list {
    border: 3px solid var(--primary-color);
    padding: 0.3rem 0;
    width: 90%;
    border-radius: 10px;
    font-weight: bold;
    box-shadow: 5px 5px 10px rgb(10, 10, 10);
}

#add-to-list:focus,
#add-to-list:hover {
background-color:var(--light-primary);
color:var(--ligthest-color);
}

#modal-footer {
    padding: 0 0 10px;
}
