@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
.html , .body{
    height: 100%;
   
}
body{
    color: white;
    font-family: 'Bebas Neue', cursive;
    background: url("https://namratapdrjs.netlify.app/scrolling-animations/assets/bg2.jpg"); 
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    overflow-x: hidden;
}

* {
    box-sizing: border-box;
}
.container{
    display: flex;
   text-align: center;
       justify-content: center;
    align-items: center;
    font-size: 2.5rem;
    min-height: 100vh;
}
.container h1{
    position: relative;
    bottom: 2rem;
}
#arrow{
    position: relative;
    left: 45px;
    width: 20px;
    height: 20px;
    border-top: 5px solid transparent;
    border-right: 5px solid transparent;
    border-left: 5px solid white;
    border-bottom: 5px solid white;
    transform: rotate(-45deg);
    animation: move .7s linear infinite;
}
@keyframes move {
    0% {
        transform:rotate(-45deg) translateY(-10px);
    }
    100% {
        transform: rotate(-45deg) translateY(0);
    }
}
.scroll{
    font-size: 2rem;
    text-align: center;
     min-height: 100vh;
}
.genre{
    text-align: left;
    position: relative;
    margin-left: 1.5rem;
}
.scroll-right-left , .zoom ,.flip{
    position: relative;
    display: flex;
    justify-content: center;
    flex-direction: column;
    font-size: 2rem;
    min-height: 100vh;
    width: 95%;
    margin: 0 1.5rem;
    margin-bottom: 1rem;
}
.image-container {
   position: absolute;
    width: clamp(450px , 50% , 600px);
    height: 350px;
    top:1rem;
}
.left{
    left:0;
}
.image-container img {
    width: 100%;
    height: 100%;
    border-radius: 5%;
    object-fit: cover;
}
.right{

    position: absolute;
    top: 380px;
    right: 0;
    border-radius: 5%;
}
@media (max-width: 760px){
    .image-container {
    position: relative;
    width: 90vw;
    height: 90%;
    top:1rem;
}
.scroll-right-left , .zoom , .flip{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-size: 2rem;
    min-height: 100%;
    width: 95%;
    padding: 1rem;
}
  footer{
    position: relative;
    text-align: center;
    width: 100%;
    top: 3rem;
    height: 100px;
}
}
footer{
    position: relative;
    text-align: center;
    width: 100%;
    top: 8rem;
    height: 100px;
}
a{
    color: red;
    text-decoration: none;
}