@media (max-width: 768px) {
    body {
      padding: 20px;
    }
  
    .advice-generator {
      width: 80%;
      height: auto;
    }
  
    #advice-text {
      font-size: 16px;
      margin-top: 10px;
    }
  
    .advice-API {
      font-size: 16px;
    }
  
    .quote-mark > img {
      width: 80%;
    }
  }

body {
    background-color: #202632;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 75px;
}

.advice-generator {
    width: 27%;
    height: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
    margin-bottom: 50px;
    background-color: #313A49;
    border-radius: 15px;

}

#advice-text {
    margin-top: 25px;
    font-family: Arial, Helvetica, sans-serif;
    letter-spacing: 3px;
    font-style: bold;
    font-size: 10px;
    color: rgb(33, 173, 106);
}

.advice-API {
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 105px;
    margin-top: 0px;
    padding: 5px;
    color: #ffffff;
    font-size: 20px;
    font-family:cursive;
    text-align: center;
    /* border-bottom: solid 1px #797979; */
    position: relative;
}

.quote-mark > img {
    display: flex;
    flex-direction: column;
    width: 90%;
    padding-left: 20px;
    padding-bottom: 20px;
    padding-right: 20px;
    /* justify-content: center; */
    align-items: center;
    /* min-height: 30px; */
    font-size: 20px;
    color: #797979;
    /* position: relative; */
}


button {
    position: relative;
    bottom: 0px;
    margin-top: 5px;
    width: 45px;
    height: 45px;
    background-color: #53FFAB;
    border-radius: calc(70px / 2);
}

button:hover {
    background-color: #53FFAB;
    box-shadow: 0px 0px 20px #53FFAB;
    cursor: pointer;
}
.button > img {
    width: 25px;
    height: 25px;
    align-items: center;   
}