@import url("https://fonts.googleapis.com/css2?family=Sour+Gummy:ital,wght@0,100..900;1,100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #FFFDD0;
  font-family: "Sour Gummy", serif;
}

@media only screen and (max-width: 720px) {
  .mainbox {
    max-width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
  }
  .mainbox .image {
    width: 100%;
    height: max-content;
    display: flex;
    justify-content: center;
  }
  .mainbox .image img {
    width: 50%;
  }
  .mainbox .txt {
    width: 100%;
    height: max-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }
  .mainbox .text {
    width: 100%;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
  }
  .mainbox .buttons {
    width: 100%;
    height: max-content;
    display: flex;
    justify-content: center;
    gap: 16px;
  }
  .mainbox .buttons a {
    width: max-content;
    height: max-content;
    padding: 16px;
    text-decoration: none;
    color: black;
  }
  .mainbox .buttons .yes {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0px 2px 5px 1px rgba(0, 0, 0, 0.5);
  }
  .mainbox .buttons .no {
    background-color: rgb(235, 144, 144);
    border-radius: 10px;
    box-shadow: 0px 2px 5px 1px rgba(0, 0, 0, 0.5);
  }
}/*# sourceMappingURL=index.css.map */