
.page-background {
    position: fixed;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -999;
    background-image: var(--bg-img);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0.4); /* Darkens the image without using opacity */
}

 /* .match-details-wrapper::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: inherit;
    opacity: 0.02;
    z-index: -1;
    background-size: cover;
    background-position: center;
} */




.match-details-wrapper .teams {
    display: flex;
    justify-content:space-between;
    align-items: center;
    flex-wrap: wrap;
    text-align: center;
    /* gap: 10px; */
}

.match-details-wrapper .team {
    flex: 1 1 40%;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 120px;
    max-width: 200px;
    color: #ffffff;
}

.match-details-wrapper .team img {
    width: 90px;
    height: 90px;
    /* border-radius: 50%; */
    object-fit: cover;
    margin-bottom: 8px;
}

.match-details-wrapper .team p {
    margin: 0;
    font-weight: 500;
    font-size: 16px;
}

.match-details-wrapper .vs {
    /* flex: 0 0 60px; */
    flex: 1 ;
    font-size: 20px;
    font-weight: bold;
    color: #ffffff;
    /* margin-right: 50%; */
}
.match-details-wrapper .competition {
    /* flex: 0 0 60px; */
    flex: 1 ;
    font-size: 17px;
    font-weight: bold;
    color: #ffffff;
    text-align: center;
    /* margin-right: 50%; */
}

