@font-face {
    font-family: "BodyFont";
    src: url('../fonts/PHILADELPHIA-Bold.otf');
    font-weight: 400;
    font-style: normal;
}

html,
body {
    font-family: 'BodyFont';
}

h1,
h2,
h3,
h4 {
    color: #f0d74a;
}

a {
    color: #f0d74a !important;
    text-decoration: none;
}


.leaderboard__participant {
    font-size: 80%;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.table {
    vertical-align: middle;
}

.table th,
.table td {
    border: transparent;
    color: white;
}

.table th {
    background-color: #802421;
}

.table td {
    background-color: #a8453b;
}

.philly-grid div:nth-child(1) {
    background-color: #4896c6;
}

.philly-grid div:nth-child(2) {
    background-color: #243767;
}

.philly-grid div:nth-child(3) {
    background-color: #3168aa;
}

.philly-grid div:nth-child(4) {
    background-color: #4996c6;
}

.philly-grid div:nth-child(5) {
    background-color: #243767;
}

.philly-grid div:nth-child(6) {
    background-color: #3168aa;
}

.philly-grid div:nth-child(7) {
    background-color: #4996c6;
}

.philly-grid div:nth-child(8) {
    background-color: #3168aa;
}

.philly-grid div:nth-child(9) {
    background-color: #3168aa;
}

.philly-grid div:nth-child(10) {
    background-color: #4896c6;
}

.philly-grid div:nth-child(11) {
    background-color: #3168aa;
}

.philly-grid div:nth-child(12) {
    background-color: #243767;
}

@media (max-width:1024px) {

    .philly-grid div:nth-child(1) {
        background-color: #4896c6;
    }

    .philly-grid div:nth-child(2) {
        background-color: #243767;
    }

    .philly-grid div:nth-child(3) {
        background-color: #3168aa;
    }

    .philly-grid div:nth-child(4) {
        background-color: #3168aa;
    }

    .philly-grid div:nth-child(5) {
        background-color: #4996c6;
    }

    .philly-grid div:nth-child(6) {
        background-color: #243767;
    }

    .philly-grid div:nth-child(7) {
        background-color: #4996c6;
    }

    .philly-grid div:nth-child(8) {
        background-color: #243767;
    }

    .philly-grid div:nth-child(9) {
        background-color: #3168aa;
    }

    .philly-grid div:nth-child(10) {
        background-color: #3168aa;
    }

    .philly-grid div:nth-child(11) {
        background-color: #4896c6;
    }

    .philly-grid div:nth-child(12) {
        background-color: #243767;
    }
}

@media (max-width:768px) {
    .philly-grid div:nth-child(1) {
        background-color: #4896c6;
    }

    .philly-grid div:nth-child(2) {
        background-color: #243767;
    }

    .philly-grid div:nth-child(3) {
        background-color: #3168aa;
    }

    .philly-grid div:nth-child(4) {
        background-color: #4996c6;
    }

    .philly-grid div:nth-child(5) {
        background-color: #243767;
    }

    .philly-grid div:nth-child(6) {
        background-color: #3168aa;
    }

    .philly-grid div:nth-child(7) {
        background-color: #4996c6;
    }

    .philly-grid div:nth-child(8) {
        background-color: #243767;
    }

    .philly-grid div:nth-child(9) {
        background-color: #3168aa;
    }

    .philly-grid div:nth-child(10) {
        background-color: #4896c6;
    }

    .philly-grid div:nth-child(11) {
        background-color: #4896c6;
    }

    .philly-grid div:nth-child(12) {
        background-color: #243767;
    }
}

article {
    margin-top: 6rem;
    margin-bottom: 6rem;
}

article p,
article li {
    font-size: 0.9rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

article li {
    margin-bottom: 1rem;
}

.carousel-item {
    text-align: center;
}

.carousel-item:nth-child(1) {
    background-color: #3169ac;
}

.carousel-item:nth-child(2) {
    background-color: #54abc4;
}

.confetti-container {
    width: 100%;
    /* Set the width to 100% to cover the entire viewport width */
    height: auto;
    /* Set a fixed height for the container */
    position: relative;
    /* Make the container relative to position the confetti elements */
    overflow: hidden;
    /* Hide overflow */
}

.confetti {
    width: 20px;
    /* Adjust the width and height for the rectangular shape */
    height: 10px;
    background-color: #f06;
    position: absolute;
    animation: fall 1s linear infinite;
    opacity: 0;
    transform: rotate(45deg);
    /* Rotate the rectangle by 45 degrees */
}

@keyframes fall {
    0% {
        transform: translateY(-100vh) rotate(0deg);
        opacity: 1;
    }

    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}

@media (max-width:1024px) {

    @keyframes fall {
        0% {
            transform: translateY(-150vh) rotate(0deg);
            opacity: 1;
        }

        100% {
            transform: translateY(100vh) rotate(360deg);
            opacity: 0;
        }
    }
}