body {
  background: linear-gradient(to bottom, #827967, #cbbba0);
  background-color: #cbbba0;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: bold;
  font-size: 14px;
  margin: 0;
  padding: 0;
  min-height: 100vh;
}

.container {
  padding-bottom: 6rem;
}

.profile-name {
  text-align: center;
  padding: 30px;
}

.links {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 20px;
  padding: 20px;
  border: 0px solid #fff;
  width: 270px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 40px;
  background-color: #fff;
  text-decoration: none;
  color: #e30613; /* Color predeterminado para los enlaces */
}

.links i {
  position: absolute;
  left: 30px;
  color: #e30613;
  font-size: 22px;
}

.links:link {
  color: #e30613; /* Color para enlaces no visitados */
}

.links:visited {
  color: #e30613; /* Color para enlaces visitados */
}

.links:hover,
.links:focus {
  text-decoration: none;
  color: black; /* Color al pasar el mouse */
}

.links:active {
  color: #e30613; /* Color para enlaces activos */
}

a:link,
a:visited,
a:hover,
a:active {
  text-decoration: none;
  color: #e30613;
}

.logo {
  max-width: 300px;
  margin-top: 50px;
  margin: 10px auto;
  display: block;
  filter: drop-shadow(2px 2px 5px rgba(0, 0, 0, 0.5));
}

.footer-strip {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background-color: transparent;
  background-image: url('pattern.svg');
  background-size: 73px 80px;
  z-index: 1000;
}

.footer-text {
  text-align: center;
  color: #000;
  font-size: 12px;
}

.footer-text a {
  color: #000;
}

.footer-text a:hover {
  color: #e30613;
}

.footer-text a:active {
  color: #000;
}

.footer-text a:visited {
  color: #000;
}

.mt-4 {
  margin-top: 1.5rem;
}

.text-center {
  text-align: center;
}

.slogan {
  font-size: 16px;
  color: #fff;
  margin-top: 10px;
}

