/* GENERAL */
body {
  margin: 0;
  padding: 0;
  font-family: "Lato", sans-serif;
  color: #000;
  background: #121212;
}

/* zona superior con imagen de banner */
.top-bg {
  background: #141414 url('cover-min.png') no-repeat center center;
  background-size: cover;
  width: 100%;
  height: 230px;
}

/* Contenedor */
.container {
  text-align: center;
  width: 90%;
  max-width: 400px;
  margin: -80px auto 0 auto;
}

/* Foto de perfil */
.profile-img {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  border: 2px solid #ffffff;
}

.name {
  font-size: 19px;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 40px;
  text-transform: uppercase;
}

/* acomodo de botones */
.buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.btn {
  background: #f0f0f0;
  color: #000;
  padding: 16px;
  font-weight: 400;
  border-radius: 18px;
  text-decoration: none;
  display: block;
  text-align: center;
  transition: all 0.25s ease;
}

.btn:hover {
  background: #d5d5d5;
} 

/* boton de agregar contacto */
.btn-contact {
  background: #C8B082; 
  color: #fff;
  padding: 16px;
  font-weight: 400;
  border-radius: 18px;
  text-decoration: none;
  display: block;
  text-align: center;
  transition: all 0.25s ease;
}

.btn-contact:hover {
  background: #a9936c;
}