body {

  font-family: "Bai Jamjuree", sans-serif;
  font-size: 18px;
  min-height: 100vh;
  margin: 0px;
  padding: 0px;
  
}
.main-container {
  width: 100%;
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
}
.section-info-1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  background-image: url("./images/bg-header-desktop.png");
  align-items: center;
  
}
.logo-img {
  width: 50px;
  margin: 10px;
}
.title {
  font-family: "Bai Jamjuree", sans-serif;
  font-style: normal;
  font-weight: 600;
  margin: 0px;
  padding: 0px;
  font-size: 28px;
}
.description {
  color: hsl(201, 11%, 66%);
  width: 500px;
  font-size: 14px;
  line-height: 1.2rem;
  text-align: center;
  font-weight: 400;
  padding: 20px;
  
}
.download-ios {
  background-color: hsl(171, 66%, 44%);
  color: white;
  border-radius: 25px;
  padding: 10px;
  margin: 10px;
  width: 180px;
  border: none;
  font-size: 15px;
  font-weight: 400;
  cursor: pointer;
}
.download-mac {
  background-color: hsl(233, 100%, 69%);
  color: white;
  border-radius: 25px;
  padding: 10px;
  width: 180px;
  border: none;
  font-size: 15px;
  cursor: pointer;
  font-weight: 400;
}
.computer-img {
  width: 600px;
}
.section-info-2 {
  display: flex;
  flex-direction: column;
 align-items: center;
 justify-content: center;
  margin: 30px;
}
.section-info-3 {
  display: grid;
  place-content: center;
  grid-template-columns: auto auto;
  column-gap: 30px;

 
}
.clipboard-text{
    color:hsl(201, 11%, 66%); 
    text-align: justify;
    width: 300px;
}
.device-img {
  width: 650px;
}
.section-info-4 {
  display: flex;
  gap: 20px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.section-info-5 {
  display: grid;
  grid-template-columns: auto auto auto;
  /* gap: 300px 300px; */
  column-gap: 40px;
  place-content: center;
}
.document-logo{
    width: 65px;
    margin: 10px;
    padding: 20px;
}
.company-logo{
  width: 150px;
}
.section-info-6{
    display: grid;
    place-content: center;
    grid-template-columns: repeat(5,300px);
    /* padding: 30px; */
}

.footer-container{
  background-color: hsl(200, 29%, 94%);
  height: auto;
  width: 100%;
  /* width:  */
  display: grid;
  padding: 20px;
  color: rgb(88, 85, 85);
  grid-template-columns: repeat(5,1fr) ;
 
}
.footer-cotent{
  display: flex;
  gap: 10px;
  cursor: pointer;
  flex-direction: column;
  
}
.social-logo{
  width: 25px;
  padding: 10px;
}
.social-logo:hover{
  cursor: pointer;
  background-color:  hsl(171, 66%, 44%);
}
.footer-cotent:hover{
  color: hsl(171, 66%, 44%);
  cursor: pointer;
}

@media only screen and (max-width:768px){
  body{
    text-align: center;
    margin: auto;
  }
  .section-info-1 {
    
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-image: url('./images/bg-header-mobile.png');
    width:100%;
    height: auto;
  }
  .download-ios,.download-ios{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  } 
  .title{
    width: 300px;
  }
  .description{
    width: auto;
    text-align: center;
    padding: 20px;
  }
  .clipboard-text{
    width: 280px;
  }
  .computer-img {
    width: 300px;
  }
  .device-img{
    width: 300px;
  }
  .section-info-6{
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
    gap: 50px;
  }
  .section-info-3{
    display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
  }
  .section-info-4{
    display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
   padding-bottom: 50px;
  }
  .section-info-5{
    display: grid;
    grid-template-columns: auto;
    gap: 10px;
  }
  .footer-container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding-bottom: 60px;
  }
}
