body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #f4f4f4;
    box-sizing: border-box;
    font-size: 1.2em;
}

.container {
    text-align: center;
    flex-grow: 1;
    padding: 20px; /* Add padding to the left and right edges */
}

.avatar {
    border-radius: 50%;
    max-width: 150px;
    margin-bottom: 20px;
}

.nickname {
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.about, .social-links, .donation-block p {
    color: #666;
    margin-bottom: 20px;
}

.donation-block .donate-button {
    display: inline-block;
    background-color: #3498db;
    color: #ecf0f1;
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 10px;
    text-decoration: none;
}

.donation-block .donate-button:hover {
    background-color: #2980b9;
}

.social-links {
    list-style: none;
    padding: 0;
    text-align: center;
}

.social-links li {
    margin: 5px 0;
}

.social-links a {
    text-decoration: none;
    color: #3498db;
}

.footer {
    background-color: #f2f2f2;
    color: #333;
    padding: 10px;
    text-align: center;
    box-sizing: border-box;
}
