body {

  background-size: cover;
  background-position: center center;
    background-repeat: no-repeat;}
* {
    box-sizing: border-box;
    font-family: "Ubuntu", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
   text-decoration: none; 

}

.ubuntu-light {
  font-family: "Ubuntu", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.ubuntu-regular {
  font-family: "Ubuntu", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.ubuntu-medium {
  font-family: "Ubuntu", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.ubuntu-bold {
  font-family: "Ubuntu", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.ubuntu-light-italic {
  font-family: "Ubuntu", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.ubuntu-regular-italic {
  font-family: "Ubuntu", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.ubuntu-medium-italic {
  font-family: "Ubuntu", sans-serif;
  font-weight: 500;
  font-style: italic;
}

.ubuntu-bold-italic {
  font-family: "Ubuntu", sans-serif;
  font-weight: 700;
  font-style: italic;
}



.detailContainer {
    display: flex;
    gap: 20px;
    flex-direction: column;
    color:  #fff;
}
.detailContainer h4{
    font-size: 32px;
    font-weight: bold;
    text-align: center;
}


.eventTitle {
    border: 1px solid #ff0000;
    text-align: center;
}

.eventList {
    border: 1px solid #ff0000;
    font-weight: bold;
}

.eventListItem {
    background: #28284f;
    color: #fff;
    font-weight: normal;
    border: transparent;
    /* font-weight: bold; */
}

.eventButton {
    transition: all 1s ease-in;
}
.eventButton:hover {
    transform: scale(1.1);
}

.eventButton3 {
    border: transparent;
    /* color: #000; */
    background: #37932f;
    font-weight: bold;
    color: #fff;
    transition: all 1s ease-in;
}
.eventButton3:hover {
    font-weight: bold;
    color: #fff;
    background: #37932f;
    transform: scale(1.1);
}





.buttonContainer {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.ruleImg {
    width: 40%;
    height: auto;
}

.backButton {
    position: fixed;
    top: 10px;
    left: 20px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid #bebebe;
    display: flex;
    align-items: center;
    justify-content: center;
}


.upButton {
    position: fixed;
    bottom: 10px;
    right: 20px;
    width: 45px;
    height: 45px;
    z-index: 5;
    border-radius: 50%;
    border: 1px solid #bebebe;
    display: flex;
    align-items: center;
    justify-content: center;
}


.card-event{
    background-color: #28284f;
    color: #fff;
}

.card-event:hover{
    border: 1px solid #4f1b24;
}

.cardEventButton {
    /* background: #4f1b24; */
    background: #080b2a;
    color: #fff;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    padding: 8px 0;
    cursor: pointer;
}
.titleList {
    color: #fff;
    /* background: #1e224d; */
    background-color: #e09f00;
    border: transparent;
    font-weight: bold;
}

.winnersContainer {
    gap: 20px;
}





@media (max-width: 1200px) {
    .backButton {
        top: 0;
        z-index: 5;
        /* left: 90%; */
        border: none;
    }
}

@media (max-width: 992px) {
    .filterContainer {
        flex-direction: column;
    }

    .buttonContainer {
        justify-content: flex-end;
    }

    .ruleImg {
        width: 100%;
        height: auto;
    }
}

.text {
    white-space: break-spaces !important;
}




@media (max-width: 540px) {
    .backButton {
        z-index: 5;
        left: 85%;
    }
}


