body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    background: url('../img/background_1.jpeg') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    text-align: center;
    padding: 20px;
    background: black;
    border-radius: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    max-width: 500px;
    width: 80%;
}

.avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
}

h1 {
    margin: 10px 0 5px;
    font-size: 30px;
    color: #ffffff;
}

.bio {
    font-size: 14px;
    margin-bottom: 20px;
}

.links a {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 30px;
    background: white;
    color: black;
    text-decoration: none;
    padding: 12px;
    margin: 10px 0;
    border-radius: 30px;
    transition: background 0.3s;
    font-size: 20px;
    font-weight: bold;
}

.links a:hover {
    background: #333;
    color: white;
}

.links a .icon {
    width: 40px;
    height: 40px;
    margin-left: 20px;
}

p {
    font-size: 20px;
}

@media (max-width: 600px) {
    .container {
        padding: 20px;
        width: 95%;
        margin: 10%;
    }

    .links a {
        flex-direction: row;
        align-items: center;
        font-size: 12px;
        gap: 20px;
        padding: 8px;
    }

    .links a .icon {
        width: 30px;
        height: 30px;
        margin-left: 20px;
    }

    h1 {
        font-size: 26px;
    }

    .bio {
        font-size: 16px;
    }

    p {
        font-size: 18px;
    }
}