@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

body {
  background: var(--background-color) url("../images/bg-desktop.svg") no-repeat center center;
  background-size: cover;
  height: 100vh;
  margin: 0 auto;
  max-width: 1300px;
  font-family: Poppins, sans-serif;
}

@media (max-width: 1000px) {
  body {
    display: flex;
    flex-direction: column;
     background: var(--background-color) url("../images/bg-mobile.svg") no-repeat;
    background-size: contain;
    background-position: center -50px;
    height: 100vh;
  }

  .logo-img {
    width: 200px;
   }

  .container {
    max-width: 100%;
    flex-direction: column;
    padding: 50px;
    gap: 20px;  
  }
  
  .main-right,
  .main-left {
    margin: 0 auto;
    }

  .main-right .example-img {
    width: 100%;
    height: auto;
    max-height: 500px ;
    max-width: 700px;
    margin: 0 auto;
  }

  .sub-tittle {
    font-size: 1.5rem;
    text-align: center;
    justify-content: center;
    margin: 0 auto;
  }

  .p-text {
    text-align: center;
    font-size: 1rem;
    margin: 30px;   
  }

  .button {
    margin: 0 auto;
    width: 250px;
  }

  .site-footer {
    justify-content: center;
  }
}