* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  background-color: #000;
}
.whatsapp {
  position: fixed;
  width: 50px;
  height: 50px;
  right: 10px;
  bottom: 30px;
}
video {
  position: fixed;
  -webkit-filter: grayscale(100%);
  width: 100%;
  height: 100%;
  z-index: 1;
  object-fit: cover;
}

#content {
  position: relative;
  height: 100%;

  z-index: 2;
  display: flex;
  justify-content: center;
  background-image: url("../assets/images/bg.jpg");
  background-size: 100%;
  background-repeat: no-repeat;
}
#content #center {

  padding: 10px 10px 100px;
  width: 100%;

  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  overflow: scroll;
  /* background-color: #fff; */
}
@media screen and (min-width: 600px) {
  #content #center {
    max-width: 600px;
  }
}

#content #center a {
  color: transparent;
  text-decoration: none;
  display: block;
  background-size: cover;
  background-position: center;
  /* max-height: 180px; */
    margin-bottom: 12px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  transition: all 0.3s;
  width:47%;
  height:170px;
  /* box-shadow: 0 0 0 rgba(0, 0, 0, 0.3); */
}

#content #center a .mask {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.3);
  color: #fff;
  font-size: 18px;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  font-weight: 600;
  flex-direction: column;
}
#content #center a .mask div {
  font-size: 16px;
}
#content #center a:hover {
  transform: translate3d(-5px, -5px, -5px);
  box-shadow: 5px 4px 12px rgba(0, 0, 0, 0.3);
}
