#rdngenrepick{
    display: inline-block;
    font-family: 'Poppins';
    border-radius: 4px;
    background-color: #ff3131;
    border: none;
    color: #FFFFFF;
    text-align: center;
    font-size: 17px;
    padding: 16px;
    width: 250px;
    transition: all 0.5s;
    cursor: pointer;
    margin: 5px;
}

#rdnfenrepick{
    display: inline-block;
    font-family: 'Poppins';
    border-radius: 4px;
    background-color: #ff3131;
    border: none;
    color: #FFFFFF;
    text-align: center;
    font-size: 17px;
    padding: 16px;
    width: 250px;
    transition: all 0.5s;
    cursor: pointer;
    margin: 5px;
}

#rdngenrepick span {
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: 0.5s;
}

#rdngenrepick span:after {
    content: '»';
    position: absolute;
    opacity: 0;
    top: 0;
    right: -15px;
    transition: 0.5s;
   }

#rdngenrepick:hover span {
    padding-right: 15px;
   }


#rdngenrepick:hover span:after {
    opacity: 1;
    right: 0;
   }


.moviecontainer
{
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: 100px;
}

.heading
{
    color: white;
    font-weight: 600;
    text-shadow: 0 0 10px yellow;
    text-align: center;
    font-size: 100px;
}

.buttons-genre
{
    margin-top: 70px;
    display: flex;
    flex-direction: column;
    justify-items: center;
}

.buttons
{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.genreselected
{
    color: white;
    text-shadow: 0 0 10px rgb(237, 0, 186);
    font-size: 150px;
    text-align: center;
    border: 2px solid white;
}

.another
{
    display: none;
    margin-top: 150px;
}

.got-this-movie
{
    color: white;
    margin-top: 20px;
    text-shadow: 0 0 15px aquamarine;
    font-size: 70px;
    text-align: center;
    border: 2px solid white;
}


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

    #button-container{
      flex-direction: column;
      gap: 30px;
    }

    button{
      margin-bottom: 25px;
      margin: auto;
    }

    .heading{
      font-size: 55px;
    }

    #merge-button{
      border: 2px solid white;
      margin:0;
    }

    .another {
        margin-top: 40px;
    }

    .got-this-movie{
        font-size: 40px;
        padding: 10px;
    }

    .genreselected{
        font-size: 70px;
    }

    .moviecontainer{
        margin-top: 10px;
    }
  }
