
h1 {
  font-size: 100px;
  margin: 0;
  color: aliceblue;
}
h2 {
  font-size: 60px;
  text-align: center;
}
h3 {
    margin: 10px;
}
/* 
  ##Device = Desktops
  ##Screen = 1281px to higher resolution desktops
*/

@media (min-width: 1281px) {
  

  
}

/* 
  ##Device = Laptops, Desktops
  ##Screen = B/w 1025px to 1280px
*/

@media (min-width: 601px)  {
  
  .subconteinerfooter {
    justify-content: space-around;
  }
  .footer .contactdiv {
    flex-direction: column;

  }
  
}

/* 
  ##Device = Tablets, Ipads (portrait)
  ##Screen = B/w 768px to 1024px
*/

@media (min-width: 601px) and (max-width: 900px) {
  
  .kategori div{
    width: 35vw;
  }
  .kategori {
    
  }
  .footer h2 {
    font-size: 30px;
  }
  
}

@media (min-width: 601px) and (max-width: 900px) {
    .footer .so {
      flex-direction: column;
    }
}

@media (min-width: 000px) and (max-width: 600px) {
  .subconteinerfooter{
    display: grid;
    grid-template-areas: 
    'logo'
    'address'
    'contact'
    ;


  }

  .footer .addres {
    grid-area: address;
    width: 100%;
  }
  .footer .logo {
    grid-area: logo;
    width: 100%;
  }
  .footer .contact {
    grid-area: contact;
    width: 100%;

  }
  .footer .so {
      flex-direction: column;
    }
  .contactdiv {
    flex-direction: row;
  }

}
@media (min-width: 0px) and (max-width: 500px){
  
}
/* 
  ##Device = Tablets, Ipads (landscape)
  ##Screen = B/w 768px to 1024px
*/

@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
  
  h1 {

  }
  
}

/* 
  ##Device = Low Resolution Tablets, Mobiles (Landscape)
  ##Screen = B/w 481px to 767px
*/

@media (min-width: 0px) and (max-width: 600px) {
  
  .kategori {
    /* flex-direction: column; */
  }
  .kategori div {
    width: 80vw;
    height: 300px;
  }
  
}

/* 
  ##Device = Most of the Smartphones Mobiles (Portrait)
  ##Screen = B/w 320px to 479px
*/

@media (min-width: 0px) and (max-width: 800px) {
  
  .conteinerabout {
    flex-direction: column;
    gap: 20px;
    margin: 20px;
    justify-content: center;
    align-items: center;
  }
  .conteinerabout .left, .conteinerabout .right {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80%;

  }
  .conteinerabout .text {
    width: 80%;
  }
  
}