@media (min-width: 768px) {
  body {
    width: 530px;
    margin: 0 auto;
    font-family: "Assistant", sans-serif;
    --main-theme: #edd3c7;
    /* --main-theme: #ffc4f1; */
    --main-theme-pressed: #eedcd3;

    --english-font: "Raleway", sans-serif;

    -webkit-tap-highlight-color: transparent;
    outline: none;
    box-shadow: none;
  }

  .page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
  }

  .page-header p,
  .page-header a {
    font-size: 2vw;
    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;
  }

  .main-image {
    width: 100%;
    position: relative;

    font-family: var(--english-font);
  }

  .main-image img {
    width: 150px;
    height: 150px;
    display: block;
    object-fit: cover;
    filter: drop-shadow(10px 2px 5px #fff);
  }

  .main-image video {
    width: 100%;
    height: 40svh;
    display: block;
    object-fit: fill;
  }

  .overlay {
    position: absolute;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    /* background-color: rgba(255, 255, 255, 0.2); */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .overlay p.header {
    font-size: 2.5vw;
    color: #000;
    margin-bottom: 1vw;
  }

  .overlay p {
    font-size: 1.5vw;
    color: #333;
  }

  .services {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 2vw;
    margin-bottom: 3svh;
    gap: 10vh;
    max-width: 90%;
    min-width: 200px;
  }

  .service {
    position: relative;
    width: 70%;
    height: auto;
  }

  .service img {
    width: 100%;
    height: 90%;
    margin-bottom: -0.8vw;
    object-fit: contain;
    object-position: center 20%;
  }

  .service-title {
    width: 100%;
    color: white;
    text-shadow: 3px 3px #00000070;
    font-size: min(5vw, 20.5px);
    line-height: 1;
    margin-top: 0.5vh;
    margin-bottom: 1vw;
    position: absolute;
    text-align: center;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .service-button {
    background-color: var(--main-theme);
    color: #000;
    font-size: larger;
    border: none;
    width: 75%;
    height: 12%;
    margin-left: 50%;
    margin-top: 5%;
    transform: translate(-50%);
    text-align: center;
    align-content: center;
    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;
    cursor: pointer;
    text-decoration: none;
    display: block;
    transition: background-color 0.3s;
  }

  footer {
    height: 5vh;
    margin-top: auto;
  }

  .footer-content {
    align-items: center;
    justify-content: center;

    background-color: var(--main-theme);
    height: 100%;
    display: flex;
  }

  .footer-content a {
    color: black;
    font-size: 3vh;
    margin: 0 0.5vw;
    height: 60%;
  }
}
