
.match-card{
    margin-bottom: 1rem;
    border-radius: 0.625rem;
    padding: 1rem;
    background: #fff;
    box-sizing: border-box;
    box-shadow: 0.1875rem 0.1875rem 0.5rem rgba(0, 0, 0, 0.25);
    display: flex;
  }

.match-card > div{
    width: 100%;
}

.match-card > input {
    max-width: 40px;
    max-height: 40px;
    text-align: center;
    text-transform: uppercase;
}

@media only screen and (min-device-width: 210px) and (max-device-width: 667px) {
    .match-card{
        flex-direction: column;
        align-items: center;
    }
    .match-card > input {
        margin-top: 1rem;
    }
} 