

.concert {
    flex-direction: row;
    padding-top: 31px;
    padding-bottom: 31px;
    margin-bottom: 0px;
    align-items: center;
}

.concert-date {
    text-align: left;
    flex-direction: column;
}

.concert-place {
    text-align: left;
    margin: auto;
}

.concert-price {
    flex-direction: row;
    justify-content: space-around;
}

.concert-div {
    align-items: center;
}

hr {
    color: var(--dark-blue);
    width: 100%;
    height: 15px;
}

@media (max-width: 56rem){
    .concert{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .concert-div {
        text-align: center;
        width: 100%;
    }
    
    .concert-date {
        flex-direction: row;
        justify-content: center;
    }

    .concert-price {
        flex-direction: column;
        justify-content: center;
    }

    .concert-place {
        text-align: center;
        /* width: auto; */
        margin: auto;
    }
    
    .concert-other {
        margin-top: 1em;
    }

    .a-button {
        margin-top: 1em;
    }
}