body{
    text-align: center;
    background-color: rgb(0, 0, 0);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: rgb(190, 190, 190);
}
header{
    background-color: rgb(255, 255, 255);
    color: rgb(124, 123, 123);
    text-shadow: 2px 2px #ffffff;
    width: 100vw;
    margin-top: -10px;
    font-size: xx-large;
    background: repeating-linear-gradient(
      45deg,
      #ffffff 0 100px,
      #000000 100px 200px
    );
}
#headerB{
    background-color: rgb(255, 255, 255);
    color: rgb(124, 123, 123);
    text-shadow: 2px 2px #ffffff;
    width: 100vw;
    margin-top: 2px;
    font-size: xx-large;
    background: repeating-linear-gradient(
      135deg,
      #ffffff 0 100px,
      #000000 100px 200px
    );
}
#info{
    position: fixed;
    left: 19%;
}
#info2{
    visibility: hidden;
}
div{
    width: 60vw;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    font-family: 'Fuzzy Bubbles', cursive;
}
#first-div{
    background-image: url(../assets/image/Slate2.png);
}
.movie-input{
    padding: 0 10px 0 10px;
}

.movie-display{
    visibility: hidden;
    border: solid;
    display: flex;
    flex-direction: column-reverse;
    margin: 30px 0 30px 0;
    padding: 0 30px 400px 30px;
    background-color: rgb(0, 0, 0);
}
#actor-display{
    display: flex;
    flex-wrap: wrap;
    padding: 0 0 400px 0;
    justify-content: center;
}
#actor-display > h4{
    display: flex;
    margin: 10px 10px;
    flex-direction: column;
    align-items: center;
}
#actor-display > h4 > img{
    height: 10em;
}
div2{
    background-color: rgb(97, 97, 97);
    background: linear-gradient(-45deg, grey, rgb(48, 36, 36));
    height: 100%;
    width: 19vw;
    position: fixed;
    left: 0;
    top: 0;
    font-family: 'EB Garamond', serif;
    color: rgb(238, 236, 236);
}
div3{
    background-color: rgb(97, 97, 97);
    background: linear-gradient(45deg, grey, rgb(48, 36, 36));
    height: 100%;
    width: 19vw;
    position: fixed;
    right: 0;
    top: 0;
}
footer{
    width: 100%;
    background-color: rgb(97, 97, 97);
    margin-bottom: -10px;
    background: repeating-linear-gradient(
      -45deg,
      #ffffff 0 100px,
      #000000 100px 200px
    );
    color: rgb(255, 255, 255);
    text-shadow: 1px 1px #000000;
    font-size: large;
}
.description{
    visibility: hidden;
    padding: 5px;
    font-size: large;
}
.descriptionAlt{
    visibility: hidden;
    position: fixed;
    background-color: black;
}
h1{
    margin-top: 0px;
    margin-bottom: 0px;
}
h2{
    margin-top: 0px;
}
h3{
    font-family: 'Fuzzy Bubbles', cursive;
}
#find{
    width: 6vw;
    height: 1.5em;
    font-size: 1.5em;
}
.visible{
    visibility: visible;
}
@media (max-width: 1000px){
    #first-div{
        width: 100%;
    }
    div2, div3{
        display: none;
    }
    #find{
        width: 4rem;
        height: 1.5rem;
        font-size: 1rem;
    }
    #actor-display{
        width: 100%;
    }
    #info{
        visibility: hidden;
    }
    #info2{
        visibility: visible;
        position: fixed;
        left: 0;
    }
    h1{
        padding-top: .5em;
    }
}
@media (max-width: 650px){
    div{
        display: flex;
    flex-direction: column;
    align-items: center;
    }
    .movie-display{
        width: 60vw;
    }
    #find{
        width: 4rem;
        height: 1.5rem;
        font-size: 1rem;
    }
    h3{
        background-color: black;
        padding: 6px 0px;
    }
}
@media (min-width: 1000px){
    .descriptionAlt{
        visibility: hidden;
    }
}