:host {
    display: flex;
    justify-content: center;
}

#box {
    display: flex;
    width: 800px;
    flex-direction: column;
    gap: 10px;
}

#stats {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.card {
    background-color: var(--tertiary-color);
    width: 400px;
    height: 130px;
    border-radius: 5px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;

    h1 {
        padding: 0 10px;
    }
}

.listCard {
    display: flex;
    flex-direction: column;
    background-color: var(--tertiary-color);
    border-radius: 5px;
    padding: 10px;
    gap: 10px;
}

.content {
    align-self: end;
}