html,
body {
  margin: 0;
  padding: 0px;
  font-family: Poppins;
}

/*section CSS*/
h1 {
  font-size: 34px;
  text-align: center;
  font-weight: bolder;
  padding-top: 50px;
}

h3 {
  font-size: 24px;
  text-align: center;
  font-weight: bold;
  padding-top: 50px;
}

h3 a {
  font-weight: bolder;
  color: #b83239;
}

h4 {
  font-size: 19px;
  text-align: left;
  font-weight: bold;
  margin: 0;
  padding-top: 50px;
}

.section {
  margin: 0;
  padding-bottom: 50px;
}

section a {
  text-decoration: none;
}

section p {
  text-align: center;
}

section button {
  background-color: white;
  border: 1px solid #b83239;
  color: #b83239;
  width: 100%;
  text-align: center;
  margin: 0px;
  padding: 10px;
  font-weight: bold;
  font-size: 16px;
}

button:hover {
  background-color: black;
}

/*content css*/

#fadeshow1 .gallerylayer img {
  width: 100%;
  height: 100%;
  object-position: center;
  object-fit: cover;
}

.home-grid-container {
  display: grid;
  grid-template-columns: 25% 25% 25% 25%;
  grid-auto-rows: minmax(550px, auto);
  grid-gap: 0px;
  /* or  we can do separate values   
    grid-row-gap: 10px;    
    grid-column-gap: 5px; 
    grid-template-areas:
    "header header"
    "sidebar article"
    "sidebar article";*/
  justify-content: center;
  text-align: center;
  color: white;
}

.home-about {
  text-align: center;
  padding-top: 275px;
  padding-bottom: 275px;
  font-size: xx-large;
  font-weight: bolder;
  color: white;

  background-image: linear-gradient(rgba(0, 0, 0, 0.72), rgb(0, 0, 0, 0.72)),
    url(../images/homeabout.jpg);
  background-size: auto 600px;
  background-position: center;
}

.home-shop {
  text-align: center;
  padding-top: 275px;
  padding-bottom: 275px;
  font-size: xx-large;
  font-weight: bolder;
  color: white;

  background-image: linear-gradient(rgba(0, 0, 0, 0.72), rgb(0, 0, 0, 0.72)),
    url(../images/homeshop.jpg);
  background-size: auto auto;
  background-position: center;
}

.home-book {
  text-align: center;
  padding-top: 275px;
  padding-bottom: 275px;
  font-size: xx-large;
  font-weight: bolder;
  color: white;

  background-image: linear-gradient(rgba(0, 0, 0, 0.72), rgb(0, 0, 0, 0.72)),
    url(../images/homebook.jpg);
  background-size: auto 600px;
  background-position: center;
}

.home-join {
  text-align: center;
  padding-top: 275px;
  padding-bottom: 275px;
  font-size: xx-large;
  font-weight: bolder;
  color: white;

  background-image: linear-gradient(rgba(0, 0, 0, 0.72), rgb(0, 0, 0, 0.72)),
    url(../images/homeclu.jpg);
  background-size: auto 600px;
  background-position: center;
}

.content-container a {
  text-align: right;
  font-size: xx-large;
  font-weight: bolder;
  color: white;
}
.content-vineyard {
  padding-top: 20%;
  padding-bottom: 20px;
  padding-right: 20px;
  background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.747)),
    url(../images/contentvineyard.jpg);
  background-size: auto 80vw;
  background-position: bottom;
}

.content-order {
  padding-top: 20%;
  padding-bottom: 20px;
  padding-right: 20px;
  background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.747)),
    url(../images/contentorder.jpg);
  background-size: auto 80vw;
  background-position: center;
}

.content-book {
  padding-top: 20%;
  padding-bottom: 20px;
  padding-right: 20px;
  background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.747)),
    url(../images/contentbook.jpg);
  background-size: auto 65vw;
  background-position: bottom;
}

.instagramfeed {
  padding-top: 10px;
  text-align: center;
}

.instagramfeed img {
  padding: 10px;
  width: 80%;
}

@media (max-width: 720px) {
  /*content css media query*/
  .home-grid-container {
    display: grid;
    grid-template-columns: 50% 50%;
    grid-auto-rows: minmax(550px, auto);
    grid-gap: 0;

    justify-content: space-evenly;
  }

  .content-container a {
    text-align: center;
  }
}
