body {
      margin: 0;
      background: #F5EEE6;
      font-family: Arial, sans-serif;
      height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .container {
      width: 100%;
      height: 100vh;
      display: flex;
      align-items: center;
      justify-content: space-between;
      position: relative;
      overflow: hidden;
    }

    .container::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image: url('Coming Soon Cover.png');
      background-size: cover;
      background-position: center;
      opacity: 0.7;
      z-index: 0;
    }

    .center-text {
      width: 100%;
      text-align: center;
      font-size: 6vw;
      color: #A84E00;
      font-weight: 900;
      position: relative;
      z-index: 1;
    }

    .bottom-left {
      position: absolute;
      bottom: 40px;
      left: 40px;
      line-height: 1.8;
      padding: 100px 100px 0px 0px; 
      background-color: rgba(245, 238, 230, 0.95);
    }

    .artist-name {
      font-size: 18px;
      font-weight: bold;
    }

    .portfolio-title {
      font-size: 14px;
    }

    .specializations {
      font-size: 14px;
    }

    .download-btn {
      margin-top: 8px;
      display: inline-block;
      text-decoration: none;
      color: black;
      font-weight: bold;
    }
   
    @media (min-width: 768px) {
        .mobile-bg { 
            display: none; 
        }
    }


 /* MOBILE */

    @media (max-width: 768px) {
      body {
        display: flex;
        align-items: center;
        justify-content: center;
        /* use dynamic viewport height to avoid address-bar resize causing vertical overflow on mobile */
        min-height: 90dvh;
        min-height: 90vh;
        margin: 0;
        /* prevent rubber-band / overscroll moving the viewport */
        overscroll-behavior-y: none;
      }

      .container {
        display: none;
      }

      .mobile-bg {
        width: 100%;
        /* dynamic viewport height prevents extra vertical scroll when the browser UI changes */
        height: 95dvh;
        height: 95vh;
        position: relative;
        padding: 3%;
        overflow: hidden;
        background-color: rgba(245, 238, 230, 0.95);
        display: flex;
        align-items: center;
        justify-content: center;
      }

      /* Background image in a pseudo-element so its opacity won't affect children */
      .mobile-bg::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: url('image left.png');
        background-size: cover;
        background-position: center;
        opacity: 0.2;
        z-index: 0;
      }
      /* ensure images scale on mobile and don't push content taller than the viewport */
      .mobile-bg img,
      .mobile-content img {
        max-width: 100%;
        height: auto;
        display: block;
      }

      .bottom-left{
        z-index: 99;
      }

      .mobile-content {
        /* position: relative; */
        z-index: 2;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        /* don't force larger-than-viewport height */
        min-height: 0;
        max-height: calc(100dvh - 40px);
        max-height: calc(100vh - 40px);
        width: 100%;
        color: black;
        overflow: hidden;
        padding: 0 2% 80px 2%;
      }

      .mobile-content h1 {
        /* prevents overly large headings that push the page taller than the viewport */
        font-size: 12vw;
        font-weight: 900;
        text-align: center;
        color: #A84E00;
        margin: 0 0 50px 0;
        line-height: 1.05;
      }

      .bottom-left {
      position: absolute;
      bottom: 20px;
      left: 20px;
      line-height: 1.4;
      max-width: 100%;
      background-color: rgba(245, 238, 230, 0.95);
      overflow-wrap: break-word;
    }
    .specializations{
        font-size: 13.5px;
    }
    }