.match-info{
    max-width: 800px;
    margin: 16px auto
}
.match-details{
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #144e8c;
    border-radius: 5px;
    color: white;
    padding: 30px;
}
.club-logo{
    width: 100%;
    border-radius: 5px;
}
.info-text{
    font-size: medium;
    font-weight: 500;
}
.hr{
    width: 100%;
    border: 1px solid grey;
    margin: 10px 0;
}
div.logo-text{
    align-items: center;
    text-align: center;
    margin-top: 40px;
}
.detail-container{
    background: #144e8c;
    border-radius: 5px;
    color: white;
    padding: 25px;
    margin: 16px 0;
}
.reverse-detail{
    transform: scale(-1, 1);
}

.red{
    color: red;
}
.red-card{
    border-radius: 3px;
    background: red;
    color: red;
    height: 16px;
    width: 12px;
    display: inline-block;
}
.green{
    color: green;
}
.yellow-card{
    border-radius: 3px;
    background: yellow;
    color: yellow;
    height: 16px;
    width: 12px;
    display: inline-block;
}

@media only screen and (max-width: 600px) {
    .club-name{
        display: none;
    }
    .clubtext{
        text-align: center;
    }
    .info-text{
        font-size: small;
    }
}

@media only screen and (min-width: 600px) {
    .clubtext{
        display: none;
    }
}