html,
body {
    margin: 0;
    height: 100%;
    font-family: 'Roboto Condensed';
    background-image: url('/assets/images/Netflix-Background2.webp');
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    background-size: cover;
}

/* removal of scrollbar */
body::-webkit-scrollbar {
    display: none;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

/* flexbox containers */
.flexbox-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.flexbox-item {
    width: 100%;
}

.flexbox-item-1 {
    min-height: 150px;
    flex-shrink: 1;
}

.flexbox-item-2 {
    min-height: 300px;
    flex: 1;
}

.flexbox-item-3 {
    min-height: 150px;
}



.logo {
    display: flex;
    align-items: center;
    justify-content: left;
    margin: 2em;
}

.text{
    font-size: 2em;
}

.request {
    color: azure;
    text-shadow: 2px 2px black;
    display: flex;
    justify-content: center;
    align-items: center;
}

.searchbar {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 9em;

}

.search {

    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    align-items: center;
    margin: 1em;
    border-radius: 5px;
    border: none;
    padding: 6px;
    outline: none;
}

input {
    text-align: center;
    font-weight: bold;
}

.form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}

.button_holder {
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    margin-top: 1.5em;
}

.btn {
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
}

.form-check-label{
    color: #35393d;
    /* text-shadow: 2px 2px black; */
    font-weight: bold;
}

.checkbox-items{
    text-align: center;
    justify-content: center;
    align-items: center;
    padding: 6px;
    padding-left: 1.3em;
    margin-left: 1em;
    background-color: #E50914;
    border-radius: 5px;
    border: none;
    width: 14em;
    height: 2.2em;
    
}

.broken_movie {
    display: flex;
    margin-top: 3em;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}



#person-name,
#movie-name,
#movie-year {
    color: black;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    margin-top: 1em;
}



@media only screen and (max-width: 360px) {
    .logo_img {
        width: 250px;
        height: 60px;
    }
}

@media only screen and (max-width: 360px) {

    .flexbox-item-1,
    .request {
        padding-bottom: 10%;

    }
}

#problem {
    color: black;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    margin-top: 1em;
}

@media only screen and (max-width: 670px) {
    .btn {
        margin: 0;
    }
}



@media only screen and (max-width: 1070px) {

    .logo,
    .flexbox-item,
    .request {
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;

    }
}


@media only screen and (max-width: 670px) {
    .searchbar {
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        flex-shrink: 1;
    }
}

/* number input arrow removal */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}