/*----------BASIC SETUP---------------*/

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html,
body {
    background-color: rgb(31, 31, 31);
    color: #fff;
    font-family: 'Bai Jamjuree', sans-serif, monospace;
    font-size: 20px;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
    font-weight: 300;
    width: 100%;
    margin: 0 auto;
}

*:focus {
    outline: none;
}

h1 {
    text-align: center;
}


/*----------MATCH CARDS---------------*/

.matchesCards {
    font-size: 19px;
}

.matchCard {
    margin: 0px;
    padding: 20px 80px;
    background-color: rgb(27, 27, 27);
    border-top: 1px solid rgb(100, 100, 100);
    border-bottom: 1px solid rgb(100, 100, 100);
    box-shadow: 1px 1px 10px rgb(17, 17, 17);
    transition: padding 0.3s ease-out;
    -webkit-transition: padding 0.3s ease-out;
    -moz-transition: padding 0.3s ease-out;
    -ms-transition: padding 0.3s ease-out;
    -o-transition: padding 0.3s ease-out;
}

.homeName {
    float: left;
}

.homeScore {
    text-align: right;
}

.awayName {
    float: left;
}

.awayScore {
    text-align: right;
}

.theTime {
    text-align: right;
    color: #1dd1a1;
    margin-right: 2px;
    font-weight: 400;
}

.liveAlert {
    background-color: #c51718;
    padding: 6px 12px;
    text-align: center;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    margin-right: 15px;
}

.endAlert {
    font-weight: 400;
    background-color: #fff;
    color: #000;
    padding: 6px 12px;
    text-align: center;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    margin-right: 15px;
}

.midPoint {
    text-align: center;
}

.currentPeriods {
    color: #1dd1a1;
    margin-left: 2px;
    font-weight: 400;
}

.titleCard {
    margin-top: 30px;
    color: #feca57;
    border-bottom: 1px solid #feca57;
    padding: 15px;
    font-weight: 600;
}

.matchDate {
    font-weight: 300;
    color: rgb(217, 218, 216);
    font-size: 18px;
    vertical-align: -1px;
}

.dateIcon{
    margin:0 2px 0 15px; 
    font-size:22px;
    color:white;
}