@media (max-width: 767px) {
  body {
    width: 100%;
    margin: 0;
    font-family: "Assistant", sans-serif;
    --main-theme: #edd3c7;
    --main-theme-pressed: #eedcd3;

    --english-font: "Raleway", sans-serif;

    display: flex;
    flex-direction: column;
    min-height: 100svh;

    -webkit-tap-highlight-color: transparent;
    /* for Chrome on Android */
    outline: none;
    /* for most browsers */
    box-shadow: none;
    /* for some browsers or if you are using Bootstrap */
  }

  .page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
  }

  .page-header p,
  .page-header a {
    font-size: 4vw;
    font-family: var(--english-font);
    cursor: pointer;
  }

  #my-own {
    display: flex;
    align-items: center;
    color: inherit;
    text-decoration: none;
  }
  #my-own-logo {
    margin-left: 3px;
  }

  .container {
    display: flex;
    height: 82svh;
    width: 100%;
    align-items: center;
    justify-content: center;
  }
  .cont {
    width: 100%;
  }

  #choose {
    margin-bottom: 0;
    font-size: 5vw;
    text-align: center;
  }

  hr {
    width: 80%;
  }

  #booking-form {
    direction: rtl;
    text-align: center;
    line-height: 1vh;
    margin-top: 20px;
  }

  input {
    width: 80%;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
  }

  #submit-button {
    background-color: var(--main-theme);
    color: black;
    padding: 10px 20px;
    border: none;
    /* border-radius: 4px; */
    cursor: pointer;
    width: 80%;
    font-size: medium;
    border-radius: 24px;
    box-shadow: rgba(60, 64, 67, 0.3) 0 1px 3px 0,
      rgba(60, 64, 67, 0.15) 0 4px 8px 3px;
  }

  #submit-button:hover {
    background-color: var(--main-theme-pressed);
  }

  #submit-button:disabled {
    background-color: lightgray;
  }

  footer {
    height: 7vh;
    margin-top: auto;
  }

  .footer-content {
    align-items: center;
    justify-content: center;
    background-color: var(--main-theme);
    height: 100%;
    display: flex;
  }

  .footer-content a {
    display: flex;
    color: black;
    font-size: 6vw;
    margin: 0 5px;
    text-align: center;
  }
}
