*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body, html{
  background: coral;


  width: 100vw;
  height: 100vh;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;

  position: relative;
}

.generateBtn{
  padding: 10px 40px;
  font-weight: 18px;
  border: none;
  border-radius: 20px;
  background-color: aquamarine;
  font-weight: bold;
  cursor: pointer;
}
.generateBtn:hover{
  box-shadow: 2px 2px 15px #0006;
}

#img{
  height: 60vh;
  object-fit: contain;
  display: none;

}

h4{
  font-size: 36px;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-weight: normal;
}



.nextBtn{
  position: fixed;
  top: 50px;
  right: 0px;

  padding:  15px 20px;
  border-radius: 30px 0px 0px 30px ;
  font-size: 24px;
  cursor: pointer;
  background-color: black;
  border: none;

  display: flex;
  align-items: center;
}
a{
  text-decoration: none;
  color: white;
}
.nextBtn:hover{
  background-color: #fff5;
}