
:root {
--ui-font: 'Krub', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

*{
  margin: 0;
  padding: 0;
  font-family: 'Krub', sans-serif;
}

  header, .first-image, .new-products, .products-on-display, .featured, .goods, .services {
    display:none;
  }

@media screen and (max-width: 600px) {

  .Silly{
    display:none;
  }

  header, .first-image, .new-products, .products-on-display, .featured, .goods, .services {
    display: block;
  }

  header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #1F1F1F;
  padding: 15px;
  height: 70px;
  }

  .nav-icons {
    display: flex;
    gap: 27px;
    align-items:center;
  }

  .bag img, .menu img {
    width: 24;
    height: auto;
  }

  .logo p {
    letter-spacing: 2px;
    font-size: 28px;
    color: white
  }

  body{
    background-color: #000000;
  }

  .first-image {
    margin-top: 23px;
    padding: 0 15px;
  }

  .image-container {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .image-container img {
    width: 100%;
    height: auto;
    display: block;
  }

 .image-container .blurb {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    font-size: 16px;
    color: white;
    opacity: 0.75;
    margin: 0;
    text-align: center;
}

  .new-products {
    margin-top: 40px;
    text-align: center;
  }

  .section-title{
    font-size:20px;
    color: white;
  }

  .products-on-display{
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 0 15px;
    margin-top: 40px;
    flex-wrap: wrap;
  }

  .product{
    display:flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
  }
  
  .product img{
    width: 100%;
    height: auto;
    display: block;
  }

  .product-title{
    text-align: center;
    font-size: 20px;
    text-decoration: underline;
    margin: 10px 0 5px 0;
    color: white;
  }

  .product-description{
    text-align: center;
    margin:0;
    color:white;
  }

  .featured{
    margin-top: 40px;
    text-align: center;
  }

  .goods{
    margin-top: 40px;
    padding: 0 15px;
  }

  .services{
    margin-top: 20px;
    padding: 0 15px;
  }
  
  .center-image-container {
    position: relative;
  }

  .center-image-container img{
    width: 100%;
    height: auto;
    display: block;
  }

  .center-image-container .overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    font-size: 20px;
    text-decoration: underline;
    margin: 0;
    color:white;
}

}