* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: url(./assets/imgfundocomputador.jpg) no-repeat top center/cover;

}

body * {
    font-family: 'Inter', sans-serif;
    color: white;
}

#container {
    width: 100%;
    max-width: 588px;
    margin: 56px auto auto auto;
    padding: 0 24px
}

#profile {
    text-align: center;
    padding: 24px;
}

#profile img {
    width: 112px;
    border-radius:50%;
}

#profile p {
    font-weight: 500;
    line-height: 24px;
    margin-top: 8px;
}

ul {
    list-style: none;   
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 24px o;
}

ul li a {
    display: flex;
    align-items: center;
    justify-content: center;

    padding: 16px 24px;

    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 8px;

    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);

    text-decoration: none;
    font-weight: 500;

    transition: background 0.2s;
}
/*pseid-selector*/
ul li a:hover {
    background: rgba(255, 255, 255, 0.1);
    border: 1.5px solid white;
}

/* Social links*/

#social-links {
    display: flex;
    justify-content: center;
    margin-top: 16px;
    padding: 24px o;
    font-size: 24px;
}

#social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    transition: background .2s;
    border-radius: 50%;
}

#social-links a:hover {
    background: rgba(255, 255, 255, 0.1);  
}

footer {
    padding: 24px 0;
    text-align: center;
    font-size: 14px;
}

