.charseters {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-gap: 20px;
}
.charseter {
    background-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    padding: 20px;
    display: grid;
    grid-template-columns: 150px 1fr;
    grid-gap: 10px;
    align-items: center;
    font-weight: 100;
}
.char {
    width: 100%;
}
.char_g {
    color: red;
    text-shadow: 0 0  2px white;
}
.char:hover {
    cursor: pointer;
    position: relative;
    transform: scale(1.5);
    box-shadow: 0 0 5px white;
    transition: 1s;
}
h2:hover {
    text-decoration: underline;
    cursor: pointer;
}