.card {
    width: 252px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    border-radius: 9px;
    transition: all 125ms ease;
}

.card:hover {
    box-shadow: 0px 0px 6px 4px rgba(0, 0, 0, 0.4);
    filter: brightness(1.08);
    cursor: pointer;
}

.card-header {
    width: 100%;
    display: flex;
    align-self: center;
    justify-content: space-between;
    background-color: #092129;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.card-header span {
    padding: 12px;
    font-weight: 500;
    font-size: 20px;
}

.card-main img {
    margin: 4px;
    width: 100px;
}

.card-footer {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    padding: 12px;
    background-color: #092129;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.types {
    width: 100%;
    display: inline-flex;
    justify-content: space-around;    
}

.types div {
    margin-top: 1px;
    margin-bottom: 1px;
}