*{
    box-sizing:border-box;
    
}
body {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    margin: 0;
    background-color: white;
    min-height: 100%;
    display: grid;
    grid-template-rows: 1fr auto;
    background-color: black;
}
header, footer {
    background: linear-gradient(-45deg, rgb(223, 245, 253), rgb(255, 240, 107), rgb(206, 255, 250), rgb(218, 165, 32));
    background-size: 400% 400%;
    animation: Gradient 20s ease infinite;
}
@keyframes Gradient{
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    
    100% {
        background-position: 0% 50%;
    }
}

header {
    height: 80px;
}

.container {
    position: relative;
    height: auto;
}
.navigation, .copyright{
   overflow: hidden;
}
.navigation {
    position: relative;
    padding-bottom: 16px;
    z-index: 2;
}
.navigation .links, .copyright .links{
    display: block;
    font-size: 17px;
    color: rgb(0, 0, 0);
    text-decoration: none;
    text-align: center;
    margin: 16px 25px 0px 25px;
    float: left;
}
.navigation .logo {
    width: 80px;
    height: 50px;
    float: left;
    border-radius: 6px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.navigation .text {
    margin: 32px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-weight: bold;
}

header .bar {
    width: fit-content;
    height: 80px;
    margin: -100px;
    background: rgb(255, 255, 255);
    opacity: 0.5;
}
.slideshow-container {
    max-width: 1350px;
    position: relative;
}
.slides img {
    vertical-align: middle;
    width: 100%;
    height: 526px;
}
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    z-index : 2 ; 
}
.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

#media-carousel-container {
    margin: 10px 40px 40px 40px;
    
}
#media-holder-action, #media-holder-drama, #media-holder-scifi {
    clear: both;
}
.popular-heading {
    border-bottom: 1px solid white;
    margin-top: 50px;
}
h2 {
    color: rgb(255, 255, 255);
}
#image-container-action, #image-container-drama, #image-container-scifi {
    height: 250px;
}
.media-carousel, .media-carousel-movies {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 10px 5px;
    float: left;
}
.overlay {
    position: absolute;
    bottom: 0;
    background: rgb(0, 0, 0);
    background: rgba(0, 0, 0, 0.5);
    color: #f1f1f1;
    width: 100%;
    text-align: center;
}
footer {
    height: 76px;
    bottom: 0px;
    width: 100%;
    grid-row-start: 2;
    grid-row-end: 3;
}
.copyright {
    position: relative;
    padding: 0px 0px 20px 0px;
    z-index: 2;
    margin-top: -20px;
    
}
.copyright .logo {
    width: 62px;
    height: 40px;
    float: left;
    border-radius: 6px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.copyright .text {
    margin-top: 28px;
    color: rgb(63, 63, 63);
}
.copyright .links{
    display: block;
    font-size: 17px;
    color: rgb(0, 0, 0);
    text-decoration: none;
    text-align: center;
    margin: 16px 25px 0px 25px;
    float: left;
}