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

body {
    font-family: 'Roboto', sans-serif;
    background-color: #1e1e1e;
    color: #d3d3d3;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.container {
    max-width: 700px;
    background-color: #2c2c2c;
    border-radius: 8px;
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.3);
    padding: 30px;
    line-height: 1.6;
    text-align: center;
}

.profile-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 20px;
    border: 3px solid #61dafb;
}

h1 {
    font-size: 2rem;
    color: #61dafb;
    margin-bottom: 10px;
}

.highlight {
    color: #61dafb;
    font-weight: 500;
}

.icons {
    margin-top: 20px;
    font-size: 2rem;
    color: #61dafb;
}

.icons i {
    margin: 0 8px;
    transition: color 0.3s;
}

.icons i:hover {
    color: #3792d3;
}

.footer {
    margin-top: 30px;
    font-size: 0.9rem;
    color: #aaa;
    text-align: center;
}

a {
    color: #61dafb;
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: #3792d3;
}
</style>