body{
    margin: 0;
}

.bodywrapper{
    background-color: inherit;
}

main{
    display: flex;
    flex-direction: column;
}

#program {
    padding-top: 1em;
}
#programheader h1{
    text-align: center;
    text-transform: uppercase;
    font-weight: bold;
    font-style: italic;
}
#programheader h2{
    text-transform: uppercase;
    font-weight: bold;
    font-style: italic;
    margin: 0px;
    text-align: center;
    min-width: 30%;
}
.semester_controls{
    display: flex;
    justify-content: space-evenly;
    padding-bottom: 2%;
}
.skipbutton{
    font-size: larger;
    color: white;
    border: 0px;
    background: black;
}
.skipbutton:hover{
    color: blue;
    background-color: white;
    transition: 0.2s;
}
.savebutton{
    font-size: xx-large;
    background-color: black;
    position: absolute;
    filter: brightness(1.55) grayscale(1) contrast(50);
    top: 8%;
    right: 15%;
    border: 0px;
}

/**** FILTER ****/
.reset_filter_button{
    position: absolute;
    color: white;
    background: none;
    border-radius: 100%;
    font-size: 2em;
    width: 1.5em;
    height: 1.5em;
}
.day_buttons{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}
.day_buttons button{
    color: white;
    background: none;
    padding: 2%;
    text-transform: uppercase;
    font-style: italic;
}
#theme_buttons{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    flex-direction: column;
    transition: 2s;
}
#theme_buttons button{
    padding: 1%;
    background: none;
    color: white;
    background: none;
    text-transform: uppercase;
    font-style: italic;
}
#selector{
    background-color: none;
}


/***********************/
.filmbox{
    border-radius: 0em;
    overflow: hidden;
    height: 21em;
    background-color: blue;
    margin: 0;
}

.filmbox:hover{
    cursor: pointer;
    filter: invert();
    transition: filter 0.2s ease-in-out;
}

.filmbox img{
    object-fit: cover;
    width: 100%;
    min-height: 21em;
    max-height: 21em;
    overflow: hidden;
}

.filmbox h1, .filmbox h2, .filmbox h3, .filmbox h4, .filmbox p{
    /*text-shadow: 1px -1px 0 cyan, 1px -1px 0 cyan, -1px 1px 0 red, 1px 1px 0 red; */
    filter: drop-shadow(2px 2px 0px black);
    padding: 0px;
    margin: 0px;
    display: flex;
    
}
.filmbox h1{
    text-transform: uppercase;
}
.filmbox_content{
    overflow: hidden;
    border-radius: 0em;
    display: flex;
    flex-direction: column;
    position: absolute;
    width: 100%;
    height: inherit;
    justify-content: space-between;
    align-items: center;
}

.filmbox_top{
    width: 100%;
    display: flex;
    justify-content: space-between;
}
.filmbox_center{
    
}
.filmbox_bottom{
    width: 100%;
    display: flex;
    justify-content: space-between;    
}


.category{
    background-color:white;
    color: black;
    text-align: center;
    font-weight: bold;
}





/********** FOOTER **********/

footer{
    padding: 0px;
    margin-top: 1em;
    border-top: 1px solid white;
}

/******* BG MARQUEE TEST ********/

#marqueebackground{
    display: none;
    position:fixed;
    font-size: 20px;
    left: 0px;
    text-transform: uppercase;
    font-style: oblique;
    z-index: -1;
}

.mymarquee{
    animation: scroll 120s linear 0s infinite;
    position: fixed;
    white-space: nowrap;
    opacity: 0.1;
/*
    text-shadow: 1px -1px 0 cyan, 1px -1px 0 cyan, -1px 1px 0 red, 1px 1px 0 red;
  */  
    color:white;
    /*color: rgb(25, 25, 25);*/
}

@keyframes scroll {
0% {
    left: 0%;
}
100% {
    left: -600%;
}
}

/* TODO: Make Marequee start with an offset, and loop seemlesly */

@media screen and (min-width: 100vh) {
  /* The width is greater than the height */
  .bodywrapper{
    width: 80%;
    margin: auto;
  }
  .filmbox_content{
    width: 78%;
  }
  #marqueebackground{
    display: block;
  }
}