body {
    margin: 0;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    box-sizing: border-box;
    position:relative;
}
.background {
    width: 100%;
    position: fixed;
    background-image: url("perfil.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    opacity: 0.25;
    filter: blur(50px);
    margin: 0;
    padding: 0;
    justify-content: center;
    align-items: center;
    height: 100vh;
    z-index: -1;
}
.container {
    text-align: center;
    width: 300px;
    position: relative; /* Necesario para posicionar el menú dentro del contenedor */
    z-index: 2; /* Asegura que el contenedor esté sobre el overlay */
}

.avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 10px;
    display: block;
}

h1 {
    font-size: 20px;
    margin: 10px 0;
}

p {
    color: #666;
}

p a{
  text-decoration: none;
  color: #3b3b3b;
}

.link {
    display: flex;
    align-items: center;
    background-color: #fff;
    color: #000;
    padding: 10px;
    margin: 20px 0;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    position: relative;
}

.link:hover {
    background-color: #fff;
}

.link img {
    width: 48px;
    height: 48px;
    margin-right: 10px;
    border-radius: 5px;
}

.link-text {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #000;
    flex-grow: 1;
}

.link-text span {
  width: 100%;
  font-weight: 500;
}

.menu-button {
    background: none;
    border: none;
    color: gray;
    font-size: 20px;
    cursor: pointer;
    margin-left: 10px;
}

.menu-content {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background-color: white;
    min-width: 250px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    z-index: 3;
    padding: 20px;
}

.menu-content a {
    color: black;
    padding: 20px;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.menu-content a:hover {
    background-color: #ddd;
    border-radius: 5px;
}

.menu-content a i {
    margin-right: 10px;
}

.menu-content .menu-title {
    font-weight: bold;
    margin-bottom: 10px;
}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Color de overlay con opacidad */
    z-index: 1; /* Asegura que el overlay esté debajo del menú pero sobre el resto del contenido */
}

.social-media {
    margin: 20px 0;
}

.social-media a {
    color: #555;
    margin: 0 10px;
    font-size: 24px;
    text-decoration: none;
}

.social-media a:hover {
    color: #000;
}

footer {
    margin-top: 20px;
}

footer p {
    font-size: 0.8em;
    color: #999;
}

footer a {
    text-decoration: none;
    color: #999;
}

footer a:hover {
    color: #555;
}
