* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Open Sans", sans-serif;
}


.mainContainer{
  height: 100vh;
  width: 100%;
  background: url(../image/japan.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}
.navbarcontent {

  height: 8vh;
  padding: 40px;
  text-align: right;
}

.navbarcontent a {
  font-size: 15px;
  color: white;
  font-weight: 500;
  font-family: unset;
  text-decoration: none;
  margin-left: 40px;
}

.navbarcontent a:hover {
  color: red;
  font-family: "open sans";
}

.bodycontent {
 
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  width: 100%;
  padding: 50px;
  color: black;
  grid-gap: 30px;
  background-color: rgba(92, 64, 51, 0.137);
  justify-items: center;
 

}

.bodycontent div {
  height: 200px;
  /* background-color: #56a571; */
  width: 200px;
  /* text-align: center; */
  /* padding-top: 85px; */
  /* box-shadow: 0px 0px 29px -3px black; */
  /* border-radius: 6px; */
  border-bottom-left-radius: 30px;
  border-top-right-radius: 30px;
}

.bodycontent > div img{
  width: 100%;
  height: 100%;
  /* border-radius: 6px; */
  border-bottom-left-radius: 30px;
  border-top-right-radius: 30px;
  border-top-left-radius: 30px;
  border-bottom-right-radius: 30px;
}


.footercontent {
  background-color: rgba(92, 64, 51, 0.582);
  color: white;
  padding: 30px;
  text-align: center;
  font-size: larger;

}