.headline{
  color: white;
  display: flex;
  justify-content: center;
  margin-top: 50px;
  border: 5px solid aquamarine;
  text-shadow: 0 0 15px greenyellow;
}

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

.heading
{
  color: white;
  text-align: center;
  font-size: 100px;
  border: 5px solid aqua;
}


.genreselected
{
  color: white;
  font-size: 150px;
  text-align: center;
}

button {
    padding: 10px 20px;
    margin-left: 50px;
    font-size: 16px;
    background-color: red;
    border: none;
    border-radius: 4px;
    transition: transform 0.3s;
    height: 70px;
    width: 150px;
}

button:hover{
  box-shadow: 0 0 10px white;
}

button.pressed {
  transform: translateY(20px) translateX(10px);
  box-shadow: 0 0 10px rgb(204, 255, 0);
}

.result {
  margin-top: 20px;
  font-size: 18px;
  color: white;
}

#button-container{
  display: flex;
  justify-content: center;
  padding: 30px;
}


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

.merge-button{
  margin-top: 20px;
  display: flex;
  justify-content: center;
}


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

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

  .headline{
    margin-top: 20px;
  }

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

  .heading{
    font-size: 55px;
  }

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