.main-section
{
    margin-top: 150px;
}
.card-title p
{
    font-family: CascadiaCode;
    font-size: 1.5em;
}

.cata-card {
    width: 40%;
    padding-left: 50px;
    padding-right: 50px;
}

.list
{
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding-right: 10px;
}

.items
{
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
    width: 100%;
    margin: 10px;
}

.items > input {
    align-self: stretch;
}

@media all and (max-width: 1100px) {
    .main-section
    {
        margin-top: 100px;
    }
    .items {
        flex-direction: column;
    }
    .items:first-child {
        border-bottom: rgba(255,255,255,0.1) solid 1px;
        margin-bottom: 10px;
        padding-bottom: 10px;
    }
    .items * {
        margin-bottom: 15px;
    }
}

@media all and (max-width: 500px){
    .cata-card {
        padding-right: 30px;
        padding-left: 30px;
    }
}