*{
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

body, html{
  width: 100vw;
  height: 100vh;
  background-color: olive;


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

  color:white;

  position: relative;
}


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

#joke{
  border-left: 5px solid yellow;
  border-right: 5px solid yellow;
  padding: 20px;
  font-size: 20px;
  font-family: 'Courier New', Courier, monospace;
  font-weight: bold;
  margin: 20px 0px;
  color: white;
  display: none;
  max-width: 70vw;
}

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

}

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



.prevBtn{
  position: fixed;
  top: 50px;
  left: 0px;

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

  display: flex;
  align-items: center;

}
a{
  text-decoration: none;
  color: white;
}
.prevBtn:hover{
  background-color: #fff5;
}