/* Reset some default styles for consistency */
body,
h1,
p {
    margin: 0;
    padding: 0;
}

/* Basic styles */
body {
    font-family: Arial, sans-serif;
    background-color: #333;
    /* Dark background color */
    color: #fff;
    /* Light text color */
    text-align: center;
}

#main {
    background-color: #444;
    /* Slightly lighter background color */
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    margin-top: 10px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

#picture img {
    max-width: 50%;
    height: auto;
    border-radius: 50%;
}

#name h1 {
    color: #fff;
    /* Light text color */
    font-size: 24px;
    margin-top: 10px;
}

#desc p {
    color: #ccc;
    /* Slightly lighter text color */
    font-size: 16px;
    margin-top: 10px;
}

#links {
    margin-top: 20px;
}

#link a {
    display: block;
    background-color: #007BFF;
    color: #fff;
    text-decoration: none;
    padding: 10px;
    border-radius: 5px;
    margin-top: 10px;
    transition: background-color 0.3s;
}

#link a:hover {
    background-color: #0056b3;
}

/* Mobile styles */
@media (max-width: 768px) {
    #main {
        padding: 10px;
    }

    #name h1 {
        font-size: 30px;
    }

    #desc p {
        font-size: 20px;
    }

    #link a {
        padding: 8px;
        font-size: 18px;
    }
}