.wrapper {
    width: 500px;
    margin: auto;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }
  
  .title {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }
  
  .title span {
    font-size: 2rem;
  }
  
  .wrapper img {
    width: 100%;
  }
  
  button:first-child {
    padding: 5px 0;
    background-color: green;
    color: white;
    width: 150px;
  }
  
  button:first-child:disabled {
    opacity: 0.5;
  }
  
  button:nth-child(2) {
    padding: 5px 0;
    background-color: blue;
    color: white;
    width: 150px;
  }
  
  button:nth-child(2):disabled {
    opacity: 0.5;
  }
  
  button:last-child {
    padding: 5px 0;
    background-color: pink;
    color: white;
    width: 150px;
  }