.listCard {
    width: 90vw;
    background: white;
    position: relative;
    top: -10px;
    border-radius: 2px;
    margin-left: auto;
    margin-right: auto;
    -webkit-box-shadow: 0px 8px 15px 0px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 0px 8px 15px 0px rgba(0, 0, 0, 0.5);
    box-shadow: 0px 8px 15px 0px rgba(0, 0, 0, 0.5);
    padding-top: 20px;
    padding-bottom: 30px;
    margin-bottom: 30px;
}

li {
    list-style: none;
}

.mainList {
    display: flex;
    flex-direction: column;
    margin-top: 35px;
}

.mainList ul {
    display: flex;
    padding: 4px 0px 2px 0px;
    margin-bottom: 5px;
    font-size: 15px;
}

.mainList ul:first-child {
    margin-bottom: 20px;
}

.gold {
    background: rgb(117, 98, 35);
    /* Old browsers */
    background: -moz-linear-gradient( top, rgba(117, 98, 35, 1) 0%, rgba(215, 183, 64, 1) 22%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient( top, rgba(117, 98, 35, 1) 0%, rgba(215, 183, 64, 1) 22%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient( to bottom, rgba(117, 98, 35, 1) 0%, rgba(215, 183, 64, 1) 22%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#756223', endColorstr='#d7b740', GradientType=0);
    /* IE6-9 */
    font-weight: bold;
}

.silver {
    background: rgb(94, 94, 94);
    /* Old browsers */
    background: -moz-linear-gradient( top, rgba(94, 94, 94, 1) 0%, rgba(192, 192, 192, 1) 22%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient( top, rgba(94, 94, 94, 1) 0%, rgba(192, 192, 192, 1) 22%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient( to bottom, rgba(94, 94, 94, 1) 0%, rgba(192, 192, 192, 1) 22%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#5e5e5e', endColorstr='#c0c0c0', GradientType=0);
    /* IE6-9 */
}

.bronze {
    background: rgb(86, 55, 33);
    /* Old browsers */
    background: -moz-linear-gradient( top, rgba(86, 55, 33, 1) 0%, rgba(166, 106, 64, 1) 22%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient( top, rgba(86, 55, 33, 1) 0%, rgba(166, 106, 64, 1) 22%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient( to bottom, rgba(86, 55, 33, 1) 0%, rgba(166, 106, 64, 1) 22%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#563721', endColorstr='#a66a40', GradientType=0);
    /* IE6-9 */
}

.mainList ul li:first-child {
    width: 10%;
    margin-left: 10%;
    text-align: center;
}

.mainList ul li:nth-child(2) {
    width: 45%;
}

.mainList ul li:nth-child(3) {
    width: 25%;
    margin-right: 10%;
    text-align: center;
}

.columnHL {
    margin-bottom: 10px;
}

@media (orientation: landscape) {
    .listCard {
        width: 70vw;
    }
    .mainList ul li:first-child {
        width: 10%;
        margin-left: 15%;
        text-align: center;
    }
    .mainList ul li:nth-child(3) {
        width: 25%;
        margin-right: 15%;
        text-align: center;
    }
}

@media (min-width: 500px) {
    .listCard {
        width: 70vw;
    }
    .mainList ul li:first-child {
        width: 10%;
        margin-left: 20%;
        text-align: center;
    }
    .mainList ul li:nth-child(3) {
        width: 25%;
        margin-right: 20%;
        text-align: center;
    }
}

@media (orientation: landscape) and (min-width: 1000px) {
    .listCard {
        width: 60vw;
    }
    .mainList ul li:first-child {
        width: 10%;
        margin-left: 30%;
        text-align: center;
    }
    .mainList ul li:nth-child(3) {
        width: 25%;
        margin-right: 30%;
        text-align: center;
    }
}