@media all and (max-width: 768px) {
  body {
    background: linear-gradient(90deg, #4b6cb7 0%, #182848 100%);
    font-family: 'Ubuntu', sans-serif;
    color: white;
    margin: 0;
    text-align: center;
  }

  #logo {
    box-sizing: border-box;
    padding: 10px;
    background: linear-gradient(180deg, rgba(84, 150, 222, 1) 0%, rgba(90, 42, 5, 0) 100%);
    background-repeat: round;
    width: 100%;
    align-items: center;
  }

  .txt1 {
    font-size: 2.5rem;
    margin: 10px;
    text-align: center;
  }

  .container1 {
    box-sizing: border-box;
    padding-top: 5px;
    width: 100%;
    max-width: 100%;
    height: 325px;
    max-height: 325px;
    background-image: url(assets/img/bck1.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    align-items: center;
    align-content: center;
    justify-content: center;
  }

  .link-none,
  .link-none:active,
  .link-none:hover {
    text-decoration: none;
    color: white;
  }

  #link_cheap {
    text-decoration: underline;
    text-decoration-color: white;
    color: limegreen;
  }

  /*grid 1*/
  .products {
    margin: 10px;
    background: rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr;
    gap: 0px 6px;
    grid-auto-flow: row;
    justify-content: stretch;
    align-content: stretch;
    grid-template-areas:
      "Intel Amd Nvidia";
    height: 150px;
  }

  .Intel {
    grid-area: Intel;
  }

  .Amd {
    grid-area: Amd;
  }

  .Nvidia {
    grid-area: Nvidia;
  }

  .Intel,
  .Amd,
  .Nvidia {
    background: rgba(247, 244, 244, 0.45);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    backdrop-filter: blur(10.5px);
    -webkit-backdrop-filter: blur(10.5px);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    margin: 5px;
    padding: 5px;
  }

}
