/* body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    background-image: url('lines.png');
}







.button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    margin: 10px;
    transition: all 0.3s ease;
}

.button:hover {
    background-color: #0056b3;
}

.button:active {
    transform: translateY(2px);
} */

/* Reglas para hacer la página responsive */
/* @media screen and (max-width: 768px) {
    #container {
        width: 90%;
    }

    #profile {
        width: 100px;
        height: 100px;
    }

    #name {
        font-size: 20px;
    }

    .button {
        padding: 8px 16px;
        margin: 8px;
    }
}

@media screen and (max-width: 480px) {
    #profile {
        width: 80px;
        height: 80px;
    }

    #name {
        font-size: 16px;
    }

    .button {
        padding: 6px 12px;
        margin: 6px;
    }
} */

body {
    margin: 0;
    font-family: "Madimi One", sans-serif;
    font-weight: 400;
    font-style: normal;
    background-image: url('img/fondo.png');
}

#profile {
    border-radius: 50%;
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    display: block;
    border: 5px solid #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

#name {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #bb4749;
}

#container {
    width: 80%;
    margin: 0 auto;
    padding-top: 50px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items:center;
}

ul {
    padding: 0;
    list-style-type: none;
    display: flex;
    flex-direction: column;
}

ui li {
    display: flex;
    justify-content: center;
    align-items: center;
}

li {
    font-size: 25px;
    width: 8em;
    height: 2em;
    color: #bb4749;
    border-left: 0.08em solid;
    position: relative;
    margin-top: 0.8em;
    cursor: pointer;
}

li::before,
li::after
{
    content: '';
    position: absolute;
    width: inherit;
    border-left: inherit;
    z-index: -1;
}

li::before {
    height: 80%;
    top: 10%;
    left: calc(-0.15em - 0.08em * 2);
    filter: brightness(0.8);
}

li::after {
    height: 60%;
    top: 20%;
    left: calc(-0.15em * 2 - 0.08em * 3);
    filter: brightness(0.6);
}

li span {
    position: relative;
    height: 120%;
    top: -10%;
    box-sizing: border-box;
    border: 0.08em solid;
    background-color: #ee9798;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: capitalize;
    transform: translateX(calc(-0.15em * 3 - 0.08em * 2));
    transition: 0.3s;
}

li:hover span {
    transform: translateX(0.15em);
}

a {
    text-decoration: none;
    color: rgb(255, 255, 255);
    display: block;
    width: 100%;
    height: 100%;
    line-height: 100%; 
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}