body {
    background-color: #1F1F1F;
    color: #CCCCCC;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}

.container {
    text-align: center;
    max-width: 400px;
    width: 90%;
    padding: 20px;
}

.avatar img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 15px;
}

.name {
    font-size: 24px;
    font-weight: bold;
    margin: 10px 0;
}

.social-icons {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.social-icon {
    color: #CCCCCC;
    font-size: 24px;
    margin: 0 10px;
    transition: color 0.3s;
}

.social-icon:hover {
    color: #FE8F00;
}

.description {
    font-size: 16px;
    margin-bottom: 20px;
    color: #AAAAAA;
}

.album-section {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    text-align: left;
}

.album-cover {
    width: 100px;
    height: 100px;
    border-radius: 8px;
}

.album-info {
    flex: 1;
}

.album-description {
    font-size: 16px;
    color: #AAAAAA;
    margin-bottom: 10px;
}

.buttons {
    margin-bottom: 20px;
}

.link-button {
    display: block;
    background-color: #333333;
    color: #CCCCCC;
    text-decoration: none;
    padding: 12px;
    margin: 10px 0;
    border-radius: 8px;
    font-size: 16px;
    transition: background-color 0.3s;
}

.link-button:hover {
    background-color: #555555;
}

footer {
    margin-top: 20px;
    font-size: 14px;
    color: #666666;
}
