*, *:before, *:after {
    box-sizing: inherit;
}

ol, ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

body {
    padding: 16px;
}

hr {
    margin-top: 16px; margin-bottom: 16px;
    border: 0;
    height: 1px;
    background: #999;
}

.content {
    min-width: 300px;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background-color: white;
    border-radius: 8px;
    padding: 16px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.logo-box a {
    text-decoration: none;
    font-weight: bold;
    color: #666;
}

.logo-box {
    text-align: center;
}

.info-box p {
    margin-top: 2px;
}

.link-box {
    text-align: center;
    color: #999;
}

.link-box a {
    text-decoration: none;
}



@font-face {
    font-family: "Emilys Candy";
    src: url("/fonts/EmilysCandy-Regular.ttf") format("truetype");
  }
  html,
  body {
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    background-color: #ffe0b2;
    font-family: Arial, sans-serif;
  }
  header {
    width: 100%;
    text-align: center;
    padding: 80px 0 20px;
    font-family: "Emilys Candy", cursive;
    font-size: 144px;
    color: rgba(94, 25, 2, 1);
  }
  .slogan {
    color: rgba(0, 0, 0, 0.9);
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    margin-top: -10px;
    margin-bottom: 20px;
    font-family: "Roboto Serif", serif;
  }
  .download-buttons {
    display: flex;
    gap: 40px;
    margin-top: 50px;
  }
  .download-buttons a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    width: 240px;
    height: 90px;
    background-color: black;
    border-radius: 15px;
  }

  .android {
    background-image: url("/images/play-store.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }
  .ios {
    background-image: url("/images/app-store.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }
  footer {
    width: 100%;
    text-align: center;
    padding: 30px 0;
    background: none;
    color: rgba(94, 25, 2, 1);
    font-size: 14px;
    border-radius: 15px 15px 0 0;
  }
  @media (max-width: 660px) {
    header {
      font-size: 72px;
      padding: 40px 0 10px;
    }
    .slogan {
      font-size: 18px;
    }
    .download-buttons {
      flex-direction: column;
      gap: 20px;
    }
    .download-buttons a {
      width: 200px;
      height: 80px;
    }
  }