@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@800&display=swap");
* 
{
  font-family: "Open Sans", sans-serif;
}

header
{
  position: relative;
  text-align: left;
  margin: 0px;
  padding: 15px;
  color: #203864; 
}

body 
{
  position: relative;
  margin: 0px;
  padding: 0;
  background-color: #F5E8C7;
  color: #203864;
  text-align: center;
}

h1 
{
  font-size: 30px;
  color: #203864;
  margin: 20px;
}

.header-grid 
{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  margin: 0px;
}

.search 
{
  font-size: 10px;
  padding: 5px;
  line-height: 15px;
  transition: all 0.3s;
  background-color: #9c6644;
  color: #F5E8C7;
}

.search:hover 
{
  scale: 1.02;
  z-index: 1;
  box-shadow: 0px 5px 10px black;
}

.log 
{
  font-size: 10px;
  padding: 5px;
  line-height: 15px;
  transition: all 0.3s;
  background-color: #9c6644;
  color: #F5E8C7;
}

.log:hover 
{
  scale: 1.02;
  z-index: 1;
  box-shadow: 0px 5px 10px black;
}

.cart 
{
  font-size: 10px;
  padding: 5px;
  line-height: 15px;
  transition: all 0.3s;
  background-color: #9c6644;
  color: #F5E8C7;
}

.cart:hover 
{
  scale: 1.02;
  z-index: 1;
  box-shadow: 0px 5px 10px black;
}

 .products-grid 
  {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    margin: 50px 0;
  }
  
  .product-card 
  {
    padding: 5px;
    line-height: 50px;
    transition: all 0.3s;
  }
  
  .product-card:hover 
  {
    scale: 1.02;
    z-index: 1;
    box-shadow: 0px 5px 10px black;
  }
  
  .card-text 
  {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    background: #2038647f;
    color: #F5E8C7;
    padding: 30px;
    border-radius: 5px;
  }
  
  .shop-btn 
  {
    font-size: 25px;
    padding: 3px;
    width: 50%;
    margin: 20px 0;
    background: #9c6644;
    border: none;
    color: #F5E8C7;
    border-radius: 5px;
    transition: all 0.3s;
  }
  
  .shop-btn:hover 
  {
    background-color: #ff99c8;
    color: #a9def9;
    cursor: pointer;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.347);
  }

  .stickers 
  {
    background: url(../images/stickers.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
  }

  .prints 
  {
    background: url(../images/prints.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
  }

  .pins 
  {
    background: url(../images/pins.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
  }

  .notebooks 
  {
    background: url(../images/notebooks.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
  }

  .stationary 
  {
    background: url(../images/stationary.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
  }

  .accessories 
  {
    background: url(../images/accessories.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
  }

  
footer 
{
  position: relative;
  display: flex;
  justify-content: space-around;
  color: #F5E8C7;
  background: #9c6644;
}