body { 
    font-family: sans-serif; 
    background-color: #2c2f33; 
    color: #ffffff; 
    padding: 2em; 
    margin: 0;
}

.container { 
    max-width: 960px; 
    margin: 0 auto; 
}

.header { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    margin-bottom: 2em; 
}

.user-info { 
    display: flex; 
    align-items: center; 
}

.user-info img { 
    width: 50px; 
    height: 50px; 
    border-radius: 50%; 
    margin-right: 1em; 
}

.server-list { 
    list-style: none; 
    padding: 0; 
}

.server-item {
    background-color: #40444b;
    padding: 1em;
    margin-bottom: 1em;
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

h1, h2 { 
    color: #7289da; 
}

a {
    color: #7289da;
}

a.button { 
    background-color: #7289da; 
    color: #ffffff; 
    padding: 10px 20px; 
    text-decoration: none; 
    border-radius: 5px; 
    transition: background-color 0.2s; 
}

a.button:hover { 
    background-color: #5b6eae; 
}