* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

canvas {
    background-color: #000;
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
}

.container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    border-radius: 10px;
    width: 90%;           
    max-width: 600px;
    padding: 20px;             
    background-color: rgba(128, 128, 128, 0.1);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.avatar {
    width: 25vw;            
    max-width: 110px;       
    height: auto;           
    border-radius: 50%;
    margin-top: 30px;
}

.name { 
    font-size: 3rem; 
    font-weight: 800; 
    margin-top: 20px; 
}

.description {
    font-size: 2rem;
    margin-top: 20px;
}

.links {
    margin-top: 20px;
    text-align: center;
}

.links a {
    display: inline-block;
    text-decoration: none;
    list-style: none;
}

.social-logo {
    width: 40px;
    height: 40px;
    margin: 0 15px;
    filter: invert(1);
    transition: transform 0.3s;
    margin-top: 10px;
    margin-bottom: 20px;
}

.social-logo:hover {
    transform: scale(1.2);
    cursor: pointer;
}
