.titleBox {
    height: 60px;
    width: 100%;
    /* background-color: red; */
    margin-top: 20px;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    font-size: 24px;
}

.title {
    display: block;
    color: #373fa4;
    padding-bottom: 20px;
    border-bottom: 3px solid #373fa4;
}

@media screen and ( max-width: 500px) {
    .titleBox {
        height: 45px;
        width: 100%;
        /* background-color: red; */
        margin-top: 20px;
        margin-bottom: 10px;
        display: flex;
        justify-content: space-between;
        font-size: 18px;
    }
}