.container{
    position: fixed;
    top: 45%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.buttonContainer{
    display: grid;
    grid-template-columns: 50% 50%;
}

.buttonContainer button{
    height: 50px;
}

.center{
    text-align: center;
}

#movie{
    width: 400px;
}

.hidden{
    display: none;
}

textarea{
    width: 100%;
}

.loadingContainer{
    position: absolute;
    z-index: 10;
    top: 45%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background: lightgray;
    padding: 0 50px 0 50px ;
}

.loadingContainer h1{
    text-align: center;
}