body{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #f3ccf3;
}
.button {
    display: inline-block;
    padding: 10px 20px;
    margin: 30px;
    background-color: #ffc5c5;
    border: none;
    border-radius: 20px;
    /*cursor: pointer;*/
    height: 400px;
    width: 300px;
  }
  
  .image-button {
    position: relative;
    overflow: hidden;
  }

  #center-button{
    height: 600px;
    width: 600px;
  }

  .text{
    font-family: 'Courier New', Courier, monospace;
  }
  
  .image-button img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /*transition: transform .3s;
    transform: translateY(100%);*/
  }
  
  /*.image-button:hover img {
    transform: translateY(0);
  }*/
  
  /*#text-box {
    display: none;
  }
  
  #center-button:focus + #text-box,
  #center-button:active + #text-box {
    display: block;
    width: 200px;
    height: 100px;
    margin-top: 10px;
    margin-left: 10px;
    padding: 10px;
    box-sizing: border-box;
    border: 1px solid #ddd;
    border-radius: 5px;
  }*/
  /*#text-box.active {
    display: block;
  }*/