#title {
  font-weight: normal;
  font-size: 46px;
  white-space: nowrap;
  margin-top: 20px;
  margin-left: 20px;
}
.circle-shadow {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.nombre {
  display: flex;
  flex-flow: row wrap;
  justify-items: center;
  justify-content: center;
  margin-top: 5px;
  margin-bottom: 20px;
}

#copyright {
  font-size: 14px;
}

img {
  background-color: #f8f8f8;
  height: 40px;
  margin-top: 5px;
  width: 40px;
  border-radius: 50%;
  text-align: center;
  line-height: 30px;
  cursor: pointer;
}

@media (max-width: 600px) {
  #title {
    font-size: 26px;
  }
  #copyright {
    font-size: 10px;
  }
}

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300&display=swap");

.popup {
  width: 400px;
  background-color: #fff;
  border-radius: 10px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.1);
  text-align: center;
  padding: 0 30px 30px;
  color: #333;
  visibility: hidden;
  transition: transform 0.4s, top 0.4s;
}
.popup .icon {
  font-size: 70px;
  padding: 10px;
  margin-top: -50px;
  color: #fff;
  background-color: rgb(47, 172, 255);
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}
.popup h2 {
  font-size: 38px;
  font-weight: 500;
  margin: 30px 0 10px;
}
.popup .ok_btn {
  margin-top: 40px;
  width: 100%;
  padding: 10px 0;
  background-color: rgb(47, 172, 255);
  color: #fff;
  border: 0;
  outline: none;
  font-size: 18px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 500;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.3);
}
.open_popup {
  visibility: visible;
  top: 50%;
  transform: translate(-50%, -50%) scale(1);
}

#lines::placeholder {
  color: rgba(53, 51, 51, 0.3);
}
