body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: black;
}

.header {
    display: flex;
    background-color: #1A1A1A;
    width: 100%;
    height: 80px;
}

.brandName {
    color: white;
    padding: 0;
    margin-top: 27.5px;
    margin-left: 15px;
    font-size: 25px;
    justify-content: center;
    align-items: center;
    margin-left: 4%;
}

.ads90 {
    display: flex;
    margin-top: 15px;
    height: 90px;
    width: 728px;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
}

.dateSelector {
    display: flex;
    margin-top: 15px;
    display: flex;
    background-color: #1A1A1A;
    width: 92%;
    height: 80px;
    margin-left: 4%;
    border-radius: 15px;
    justify-content: center;
    align-items: center;
}

.switcher {
    color: white;
    font-size: 20px;
    width: 30px;
    height: 30px;
    background-color: #4A4A4A;
    border-radius: 50px;
    border-style: none;
}

#left {
    margin-left: 10px;
}

.date {
    color: white;
    font-size: 20px;
    margin-left: auto;
    margin-right: auto;
}

#right {
    margin-right: 10px;
}

.tempLoader {
    align-items: start;
    margin-top: 15px;
    width: 92%;
    height: 400px;
    margin-left: 4%;
    border-radius: 15px;
    background-color: #1A1A1A;
}

.leagueName {
    display: flex;
    align-items: center;
    width: 95%;
    height: 60px;
    padding-left: 5%;
    color: white;
    font-size: 16px;
    font-weight: bold;
    background-color: #262626;
    border-radius: 15px;
}

.matches {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 70px;
    position: relative;

}

.liveButton {
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 15px;
    width: 55px;
    height: 30px;
    background-color: #ff0000;
    border-radius: 3px;
    margin-left: 2%;
    border: 2px solid white;
    /* margin-right: auto; */
}

.homeName {
    position: absolute;
    left: 39%;
    transform: translateX(-100%);
    text-align: right;
    margin-left: auto;
    color: white;
    font-size: 10px;
}

.homeLogo {
    position: absolute;
    left: 45%;
    transform: translateX(-100%);
    display: flex;
    width: 20px;
    align-items: center;
    justify-content: center;
    margin-right: 50px;
}

.hLogo {
    width: 100%;
}

.timer {
    color: rgb(179, 179, 179);
    font-size: 12px;
    font-weight: 800;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.awayLogo {
    position: absolute;
    left: 55%;
    /* transform: translateX(-50%); */
    display: flex;  
    width: 20px;
    align-items: center;
    justify-content: center;
    margin-right: 2%;
}

.aLogo {
    width: 100%;
}

.awayName {
    position: absolute;
    left: 61%;
    /* transform: translateX(-50%); */
    margin-right: 2%;
    color: white;
    font-size: 10px;
}

.matchContainer {
    width: 200px;
    height: 100px;
    text-align: center;
    line-height: 100px;
    transition: background-color 0.3s ease;
}

.matchContainer:hover {
    background-color: dodgerblue;
    color: white;
}