* {
  margin: 0px;
  padding: 0px;
}
/* body {
  position: relative;
} */
.content {
  width: 90%;
  margin: auto;
  /* margin-top: 20px; */
  padding: 10px;
  padding-top: 50px;
  /*display:  flex;
	justify-content:  space-around;*/
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  /* grid-template-rows: repeat(6, 1fr); */
  /* position: absolute;
  top: 30px; */
}
.content a {
  /* display: block; */
  width: 100%;
  padding: 5px;
}
.content a img {
  width: 100%;
}
.menu {
  /* padding-top: 5px; */
  width: 90%;
  height: 50px;
  margin: auto;
  /* border: 1px solid red; */
  display: flex;
  justify-content: space-around;
  border-bottom: 1px solid white;
  background-color: rgba(0, 0, 0, 0.3);
}
.menu > div {
  width: 100%;
}
.menu a {
  display: block;
  width: 100%;
  height: 50px;
  /* border: 1px solid blue; */
  text-align: center;
  color: white;
  font-size: large;
  font-weight: 600;
  text-decoration: none;
  opacity: 100%;
  padding-top: 10px;
}

.menu a:hover {
  background-color: rgba(255, 255, 255, 0.7);
  color: black;
}
header {
  position: fixed;
  left: 55px;
  width: 90%;
}
.curent {
  background-color: rgba(255, 255, 255, 0.7);
  color: black !important;
}
@media only screen and (max-width: 46.1875em) {
  .menu {
    height: 50px;
  }
  .menu a {
    height: 50px;
  }
  header {
    left: 20px;
  }
}
