*,
html {
  padding: 0%;
  margin: 0%;
}

.container-navbar {
  background-color: rgb(210, 169, 37);
  width: 100%;
  height: 10vh;
}

.ul-navbar {
  display: flex;
  height: 63px;
  justify-content: center;
  align-items: center;
}

.li-navbar {
  list-style-type: none;
  padding: 15x;
  margin: 16px;
  color: white;
  font-size: 25px;
}

.li-navbar:hover {
  background-color: rgb(105, 98, 98);
  transition: 0.3s ease-in-out;
  transition-delay: 0.4s;
  border-radius: 10% 5%;
}

.a-navbar {
  color: rgba(1, 34, 21, 0.478);
  text-decoration: none;
  font-weight: 800;
}

.container-content {
  background-color: #901d1d;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80vh;
}

.a-content {
  background-color: #ffffff;
  color: rgb(0, 0, 0);
  text-decoration: none;
  font-size: 23px;
  width: 620px;
  height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  border-radius: 80px;
  box-shadow: 10px 10px 5px 0px rgba(0, 0, 0, 0.75);
  -webkit-box-shadow: 10px 10px 5px 0px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 10px 10px 5px 0px rgba(0, 0, 0, 0.75);
}

.img-content {
  height: 50%;
  width: 50%;
}

.container-footer {
  background-color: rgb(210, 169, 37);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 10vh;
}

.h1-footer {
  font-size: 37px;
  color: #ffffff;
}