.nickname-list {
    display: flex;
    flex-direction: row;
    width: 100%;
    gap: 5px;
    flex-wrap: wrap;
    margin-bottom: 1em;
}

.nickname-list-item {
    background-color: #1C1C1C;
    padding: 5px 10px;
    color: white;
    border-radius: 10px;
    cursor: pointer;
    border-bottom: 2px solid #22A7F0;
}

.character-image{
    height: 350px;
    width: 225px;
    border-radius: 10px;
    object-fit: cover;
}

.description{
    background-color: rgb(41 41 41 / 80%);
    line-height: 27px !important;
    border-radius: 10px;
    padding: 1em;
}

.powered-by{
    margin: 0 auto;
    text-align: center;
    background-color: rgb(41 41 41 / 80%);
    padding: 0.5em;
    width: fit-content;
    border-radius: 10px;
}

