
@import url('https://fonts.googleapis.com/css2?family=Dangrek&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Oswald:wght@200..700&family=Outfit:wght@100..900&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&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

*{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}


.Qr-image{
  border-radius: 8px;
  width: 315px;
  margin-bottom: 20px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}

body{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: hsl(212, 45%, 89%); /* لون خلفية خفيف */

}


.container{
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 18px;
  width: 100%;
  max-width: 350px;
  height: 570px;
  box-shadow: -1px 1px 10px rgba(0 , 0 , 0 , 0.25);
  border-radius: 4%;
  -webkit-border-radius: 4%;
  -moz-border-radius: 4%;
  -ms-border-radius: 4%;
  -o-border-radius: 4%;
  background-color: hsl(0, 0%, 100%);
}

.texts {
  font-size: 15px;
  font-family: "Outfit", sans-serif;
 text-align: center;
}

.texts .title {
  font-weight: 700;
  font-size: 24px;
  max-width: 300px;
  color: hsl(218, 44%, 22%);
  margin-top: 5px;
}

.texts .description {
  color: hsl(216, 15%, 48%);
  max-width: 270px;
  margin: 23px auto;
  font-size: 17px;
  font-weight: 400;
  line-height: 23px;
}

@media (max-width : 500px) {

  .container{
    max-width: 300px;
    height: 500px;
  }

  .Qr-image{
    width: 270px;
  }

  .texts .title{
    max-width: 250px;
    font-size: 20px;

  }
  
  .texts .description{
    font-size: 15px;

  }
}


@media (min-width : 501px){

  .container{
    max-width: 350px;
    height: 560px;
  }

  .texts .title {
    font-size: 24px;
    max-width: 300px;
  }

  .texts .description {
    font-size: 17px;
    max-width: 270px;
  }
}