body {
  background-image: url(../img/Home\ Animal.png);
  background-size: 100% 100%;
  background-attachment: fixed;
  font-family: Arial, Helvetica, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
}

.bg {
  
  background-color: rgb(252 252 252 / 54%);
  height: 100vh;
  width: 100%;
  position: absolute;
}

.atas {
  background-color: #6ECB63;
  width: 100%;
  box-shadow: 0px 3px 8px 1px black;
  display: inline-block;
  margin: 20px auto;
  margin-top: -10px;
  padding: 10px 0px;
}

.atas p {
  font-size: 4vw;
  margin-top: 10px;
  font-weight: bold;
}

.tengah {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 8%;
  text-align: center;
}

a {
  text-decoration: none;
  color: black;
  display: inline-block;
  margin: 1%;
  width: 30%;
}

.container {
  position: relative;
  background-color: inherit;
}

.content {
  background-color: white;
  border-radius: 20px;
  box-shadow: 0px 5px 13px 2px black;
  padding: 8px;
}

h2 {
  font-size: 2vw;
  text-align: center;
}

.bawah {
  background-color: #6ECB63;
  padding: 10px;
  text-align: center;
  bottom: 0;
  width: 100%;
  position: fixed;
  z-index: 1;
  box-shadow: 0px 3px 8px 1px black;
  font-weight: bold;
}

.ef{
  -webkit-transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.ef::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.ef:hover {
  -webkit-transform: scale(1.1, 1.1);
  transform: scale(1.1, 1.1);
}

.ef:hover::after {
  opacity: 1;
}