* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: rgb(243, 225, 237);
    font-family: Verdana, Geneva, Tahoma, sans-serif;
  }
  
  .gif {
    height: 70%;
    width: 70%;
  }
  
  h1{
    text-align: center;
    font-size: 1.7em;
    color: #e94d58;
    margin: 15px 0;
  }
  .btn-group {
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: center;
    margin-top: 50px;
  }
  button {
    position: absolute;
    width: 150px;
    height: inherit;
    color: rgb(235, 229, 229);
    font-size: 1.2em;
    border-radius: 30px;
    outline: none;
    cursor: pointer;
    box-shadow: 0 2px 4px gray;
    border: 2px solid #c0d6e4;
    font-size: 1.2em;
  }
  button:nth-child(1) {
    margin-left: -200px;
    background: #e26878;
  }
  button:nth-child(2) {
    margin-right: -200px;
    background: rgb(235, 224, 224);
    color: #e22242;
  }
  