body {
    background-color: #1e1e1e;
    color: #ffffff;
    font-family: Arial, sans-serif;
    text-align: center;
    margin: 0;
    padding: 0;
}

.container {
    padding: 20px;
}

.profile {
    text-align: center;
    margin-bottom: 20px;
}

.profile-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 10px;
}

.links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
}

.button-logo {
    width: 20px;
    height: 20px;
    margin-right: 8px;
}


.links a {
    display: flex;
    align-items: center;
    background-color: #333;
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
}

.links a:hover {
    background-color: #555;
}

.links i {
    margin-right: 8px;
}

.section {
    margin: 10px 0;
}

.toggle-btn {
    background-color: #444;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s;
}

.toggle-btn:hover {
    background-color: #666;
}