*,
html {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

.container-navbar {
  background-color: crimson;
  width: 100%;
  height: 100px;
  
}

.ul-navbar {
  display: flex;
  justify-content: center;
  height: 100px;
  align-items: center;
}

.li-navbar {
  list-style-type: none;
  padding: 20px;
  margin: 5px;
  color: white;
  font-size: 30px;
}

.li-navbar:hover {
  background-color: tomato;
  transition: .2s ease-in-out;
  transition-delay: .3s;
  border-radius: 8px;
}

.a-navbar {
  color: white;
  text-decoration: none;
  font-weight: 800;
}

.container-content {
  background-color: #f7f7f7;
  height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.a-content {
  background-color: white;
  color: black;
  text-decoration: none;
  font-size: 30px;
  font-family: Monospace;
  width: 720px;
  height: 480px;
  flex-direction: column;
  display: flex;
  justify-content: center;
  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: crimson;
  height: 10vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.h1-footer {
  font-size: 40px;
  color: white;
}
