body {
font-family: Segoe UI Light;
}

.home {
  display: grid;
  justify-content: center;
  align-items: center;
}

.maintext {
   font-size: 100px;
   text-align: center;
}

.buttons button {
    border-radius: 50px;
    background-color: #153c44;
    color: white;
    box-shadow: none;
    border: 0;
    padding: 14px 16px;
    font-size: 20px;
    margin: 5px;
}

.buttons {
    display: flex;
    justify-content: center;
    align-items: center;
}

.blogcard {
  border-color: black;
  width: 75%;
  height: 100%;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
  transition: 0.3s;
  padding: 15px 15px;
  margin: 15px;
}

.blogcard:hover {
  box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
}

.store {
  display: grid;
  align-items: center;
}

.products {
  display: flex;
  gap: 25px;  
  align-items: center;
  justify-content: center;
}

.productcard {
  display: grid
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  border-color: black;
  width: 20%;
  height: 450px;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
  transition: 0.3s;
  padding: 5px 5px;
  background-color: #153c44;
  border-radius: 5px;
}

.productcard:hover {
  box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
}

.productcard button {
    border-radius: 50px;
    background-color: #376d78;
    color: white;
    box-shadow: none;
    border: 0;
    padding: 12px 12px;
    font-size: 15px;
    margin: 5px;
}

.blogs {
  display: grid;
  justify-content: center;
  align-items: center;
  width: 100%;
  grid-gap: 50px;
}

