.container {
    display: flex;
    flex-wrap: wrap;
    margin: 1px;
    padding: 20px;
}

.accounts {
    background-color: #e3e3e3;
    padding: 10px;
    width: calc(25% - 16px);
    height: 256px;
    box-sizing: border-box;
    text-align: center;
    border-radius: 4px;
    transition: background-color 0.2s ease;
    margin: 8px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
}

.account-info {
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
}

.accounts a {
    text-decoration: none;
    color: black;
    display: block;
    font-size: 16px;
    font-weight: bold;
    display: block;
    height: 100%;
    width: 100%;
}

.accounts:hover {
    background-color: #FFD700;
}

.account-profile-pic {
    flex-shrink: 0;
    width: 128px;
    height: 128px;
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.4);
    margin-bottom: -16px;
}

.account-displayname {
    font-size: 24px;
    font-weight: bold;
}

.account-stats {
    color: #777;
    font-size: 14px;
}

.account-creation {
    color: #999;
    font-size: 12px;
}