body{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #faade091;
}
.large-button {
    width: 600px;
    height: 600px;
    font-size: 18px;
    background-color: rgb(236, 169, 189);
    color: rgb(22, 21, 21);
    border: black;
    border-radius: 5px;
    border-style: initial;
    position: relative;
    overflow: hidden;
    font-family:serif;
    font-size: large;
  }
  
  .large-button:hover .hover-image {
    display: block;
  }
  
  /*.hover-image {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  
  .hover-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }*/