@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;700&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Lobster+Two&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Kaushan+Script&display=swap');

body {
  background: #3a6186;  /* fallback for old browsers */
  background: -webkit-linear-gradient(to right, rgba(137, 37, 62, 0.575), rgba(58, 97, 134, 0.514)),url(../IMG/1.jpg);  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to right, rgba(137, 37, 62, 0.445), rgba(58, 97, 134, 0.568)),url(../IMG/1.jpg); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    background-color: #000000;
    background-size: cover;
  font-family: "Poppins", sans-serif;

}
body::before {
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.6;
}
.center-container{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin-top: -100px;
}
.titulo{
 text-align: center; 
 color: white;
 font-family: 'Kaushan Script', cursive;
 font-size: 45px;
 font-weight: 100;
 margin-top: 80px;
 margin-bottom: 30px;
}
.person {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 20px;
  padding: 20px;
  background-color: #1f0909;
  border-radius: 10px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}

.containeras {
  border-radius: 50%;
  width: 400px;
  height: 312px;
  transform: scale(0.48);
  transition: transform 250ms cubic-bezier(0.4, 0, 0.2, 1);

}
.containeras:hover {
  transform: scale(0.5);
}
.containeras-inner {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 600px;
  top: -220px;
}
.circle {
  background-color: #00c6e90c;
  background-image: linear-gradient(160deg, #42e9000c 0%, #80c7d00a 100%);
  cursor: pointer;
  border-radius: 30%;
  height: 383px;
  left: 9px;
  position: absolute;
  top: 210px;
  width: 203px;
  transition: 0.3s;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px,
    rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}

.imga {
  position: relative;
  transform: translateY(20px) scale(1.15);
  transform-origin: 50% bottom;
  transition: 0.3s;
width: 100%;
}
.containeras:hover .imga {
  transform: translateY(0) scale(1.2);
}
.divider {
    margin-top: -50px;
  background-color: #78d2fc;
  height: 2px;
  width: 200px;
}
.name {
  color: #fff;
  font-size: 36px;
  font-weight: 400;
  margin-top: 16px;
  margin-bottom: 10px;
  font-family: 'Kaushan Script', cursive;
}
.title {
  color: #c9c9c9;
  font-size: 14px;
  margin-top: 4px;
}
@media (max-width: 768px) {
  .person {
    width: 80%;
    margin-top: -120%;
  }
}

@media (max-width: 600px) {
  .center-container {
    flex-direction: column;
    margin-top: 140px;
  }
  .titulo{
    text-align: center; 
    color: white;
    font-family: 'Kaushan Script', cursive;
    font-size: 45px;
    font-weight: 100;
    margin-top: 100px;
   }
}