* {
    box-sizing: border-box;
}

img {
    max-width: 100%;
    width: 100%;
    height: 100%;
}

a {
    text-decoration: unset;
    border: unset;
}

section,
footer {
    padding: 0 30px;
}

html,
body {
    height: 100%;
}

body {
    font-family: "Roboto", sans-serif;
    position: relative;
    display: flex;
    flex-direction: column;
    margin: unset;
}

body img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -1;
}


tbody {
    color: #000;
}

.date-txt {
    text-align: start;
    color: #043790;
    border-radius: 5px;
    padding: 5px;
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 40px;
}

.email {
    font-weight: 800;
}


.web-bg {
    display: none;
}

.main {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
}

.main span {
    font-family: "Righteous", sans-serif;
    font-size: 40px;
    color: #2a4e94;
    font-weight: 800;
    width: 270px;
    text-align: start;
    line-height: 55px;
    margin-bottom: -20px;

}

.main a {
    background: #fff;
    width: fit-content;
    padding: 15px 55px;
    border-radius: 30px;
    color: #02358f;
    font-weight: 500;
    font-size: 22px;
    margin: 0 auto;
}

.main a:hover {
    filter: brightness(0.5);
}

.rules {
    margin-top: 35px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    background: inherit;
}

.rules div {
    color: #fff;
    font-weight: 500;
    font-size: 14px;
}

.rules .clickable-div:hover {
    color: #02358f;
}


footer {
    background-color: rgba(255, 255, 255, 0.5);
}

footer p {
    text-align: center;
    color: #043790;
    margin: unset;
    font-size: 12px;
    padding: 3px;
    font-weight: bolder;
}



/* Popup container, hidden by default */
.popup {
    display: none;
    /* Hidden by default */
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    /* Semi-transparent background */
    justify-content: center;
    align-items: center;

}

/* Popup content */
.popup-content {
    background-color: white;
    color: #000;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.5);
    width: 80%;
    height: 80%;
    text-align: start;
    overflow-y: scroll;
    cursor: unset;
}

#contact .popup-content {
    height: fit-content;
}

.clickable-div {
    cursor: pointer;
}

.popup-content p,
.popup-content li {
    color: #000;
    font-size: 14px;
    text-align: justify;

}

/* Close button */
.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 20px;
    cursor: pointer;
    color: #fff;
}

h1 {
    font-size: 32px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #333;
}

h2,
h4,
h5 {
    text-align: left;
    font-weight: bold;
}

ol li,
ul li,
.text {
    color: #043790 !important;
    font-weight: normal;
}

ol li {
    list-style: decimal;
    color: #000;
}

ol li p {
    font-size: 14px;
    text-align: start;

}

ul li {
    font-size: 14px;
    list-style: disc;
}

.list-decimal li {
    list-style: decimal;
}

#contact span {
    font-weight: 900;
}

.sub-title {
    font-size: 75px !important;
}

@media only screen and (max-width: 1000px) {
    .animated-text {
        opacity: 0;
    }

    .main span {
        font-size: 30px;
        line-height: 40px;
        margin-bottom: -12px;
    }

    .date-txt,
    ol li {
        font-size: 14px;
        margin-bottom: 5px;
    }

    .sub-title {
        font-size: 25px !important;
    }

    ul li {
        font-weight: normal;
    }

    ul,
    ol,
    p {
        margin: 7px 0;
    }

    .rules {
        margin-top: 12px;
    }
}


@media only screen and (min-width: 1200px) {


    ul li,
    ol li,
    .text {
        font-size: 18px;
    }

    .date-txt {
        margin-bottom: 60px;
        max-width: 45%;
    }

    .main {
        justify-content: center;
    }

    .mob-bg {
        display: none;
    }

    .web-bg {
        display: block;
        object-position: bottom;
    }

    .main {
        max-width: fit-content;
        margin-left: 80px;
    }

    .main span,
    .main h1 {
        margin: unset;
        text-align: start;
    }


    .main span {
        font-size: 65px !important;
        width: 600px;
        line-height: 60px;
    }

    .date-txt {
        font-size: 16px;
    }

    .text {
        max-width: 600px;
    }

    .main a {
        padding: 12px 55px;
        font-size: 28px;

    }

    .rules {
        max-width: 600px;
        margin-left: 80px;
        margin-top: unset;
    }

    .rules .clickable-div {
        font-size: 22px;

    }

    footer p {
        font-size: 16px;
    }


}