body {
    background-color: rgb(30, 30, 30);

    color: rgb(250, 250, 250);
    /* font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif; */
    font-family: "Righteous";
}

.vertical-center-div {
    display: flex;
    flex-direction: column;

    justify-content: center;
    align-items: center;
}

.horizontal-center-div {
    display: flex;
    flex-direction: row;
}

#prompt-div {
    margin-top: 80px;

    font-size: 25px;
}

#prompt-div > h2 {
    margin-bottom: 0px;
}

#imdb-logo {
    /* width: auto;
    height: auto;
    max-width: 150px; */

    object-fit: contain;
    max-width: 120px;
    margin: 0px 5px;
}

#input-div {
    margin-top: 25px;
    /* border: 2px solid rgb(250, 250, 250); */
    border: 2px solid rgb(255, 198, 0);
    border-radius: 30px;
    
    overflow: hidden;
    /* padding: 10px 20px; */
}

#list-url-form {
    margin: 0px 0px;
}

#list-url-input {
    width: 500px;
    background-color: transparent;
    border: none;
    padding: 0px 20px;

    color: rgb(240, 240, 240);
    font-size: 20px;
}

#list-url-input:focus {
    outline: none;
}

#list-url-input:focus::placeholder {
    color:transparent;
}

#button-div {
    /* background-color: rgb(250, 250, 250); */
    background-color: rgb(255, 198, 0);
    padding: 0px 20px 0px 5px;

    cursor: pointer;
}

#dice-img {
    object-fit: contain;
    max-width: 50px;
}

#submit-button {
    border: none;
    padding: 0px 0px;
    background-color: transparent;
    font-family: "Righteous";
    font-size: 20px;

    height: 100%;

    cursor: pointer;
}

#movie-data-div {
    margin-top: 50px;

    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

#movie-title {
    margin: 0px 0px;
    font-size: 25px;

    text-decoration: none;
    color: rgb(250, 250, 250);
    font-weight: bold;
}

#release-year {
    margin: 0px 0px 20px 0px;
    font-size: 20px;
}


#movie-poster {
    object-fit: contain;
    max-width: 250px;

    display: inline-block;
    vertical-align: middle;
    transition: all 0.25s ease-in-out;
}

#movie-poster:hover {
    transform: scale(1.05);
}


/* loading thing */
.loader {
    display: none;

    width: 48px;
    height: 48px;
    border: 5px solid #FFF;
    border-bottom-color: transparent;
    border-radius: 50%;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}