* {
  margin: 0;
  padding: 0;
  /* box-sizing: border-box; */
}
html {
  font-size: 10px;
  font-family: sans-serif;
}
body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100vw;
  background-color: black;
}
.wecan{
  box-sizing: border-box;
  display: flex;
  width: 2vw;
  height: 2vw;
  left: 0;
  bottom: 0;
  position: absolute;
}
.wecan:hover {
  cursor: pointer;
}
.container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 749px;
  background-color: rgb(230, 230, 230);
  height: 620px;
  border-radius: 20px;
  box-shadow: 5px 10px 15px 0px rgba(255, 0, 0, 0.5);
}
.card {
  width: 729px;
  background-color: white;
  height: 600px;
  border-radius: 20px;
}
.fondo {
  height: 280px;
  background-image: url("./images/paisaje.jpeg");
  border-radius: 20px 20px 0 0;
  background-repeat: no-repeat;
  background-size: cover;
}
.foto {
  width: 312px;
  height: 312px;
  border-radius: 50%;
  margin-top: -156px;
  margin-left: 209px;
  border: 4px solid white;
}
.nombre {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 600;
  margin-top: 20px;
}
.texto {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 400;
  color: #7e7e7e;
  margin-top: 1rem;
}
.boton {
  background-color: darkred;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  margin: 1rem;
  font-size: 1.5rem;
  font-weight: 600;
  transition: background-color 0.5s ease, transform 1s ease;
  box-shadow: 0 4px 8px rgba(151, 2, 2, 0.308);
}

.centrar-boton {
  display: flex;
  justify-content: center;
}

.boton:hover {
  background-color: red;
  cursor: pointer;
  transform: scale(1.05);
}
.limpiar-link {
  text-decoration: none;
  color: white;
}
