.features {
    text-align: center;
    color: #ff0303;
    font-family: 'Arial', sans-serif;
}

h3 {
    color: rgb(98, 176, 214);
    font-family: 'Arial', sans-serif;
}

#headTitle {

    color: rgb(0, 0, 0);
    font-family: 'Arial', sans-serif;
}

#headTitle {
    color: black;
    /* Adjust this color to match your theme */
}

.live-jump {
    color: #e8332a;
    font-weight: bold;
    animation: jump 1s infinite, spin 1s infinite;
}

#headTitle {
    color: black;
    /* Adjust this color to match your theme */
}

.live-jump {
    color: #e8332a;
    font-weight: bold;
}

@keyframes jump-spin {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    10% {
        transform: translateY(-20px) rotate(45deg);
    }

    20% {
        transform: translateY(-10px) rotate(90deg);
    }

    30% {
        transform: translateY(-20px) rotate(135deg);
    }

    40% {
        transform: translateY(-10px) rotate(180deg);
    }

    50% {
        transform: translateY(-20px) rotate(225deg);
    }

    60% {
        transform: translateY(-10px) rotate(270deg);
    }

    70% {
        transform: translateY(-20px) rotate(315deg);
    }

    80% {
        transform: translateY(-10px) rotate(360deg);
    }

    100% {
        transform: translateY(0) rotate(0deg);
    }
}



ul {
    padding: 0;
    gap: 10px;
    /* Adjust as needed */
    flex-wrap: wrap;
    /* Wraps items to the next row if the screen is too narrow */
}

ul li {
    display: inline-block;
    margin-right: 20px;
    /* Adjust spacing as needed */
}

.listlist {
    margin-left: 20px;
    list-style-type: square;
}

.listlist li {
    margin-left: 20px;
    display: list-item;
    margin-bottom: 15px;
}

p {
    font-family: 'Arial', sans-serif;
}

body {
    font-family: 'Arial', sans-serif;
}

body {
    font-family: Arial, sans-serif;
}

section#where-to-find-us {
    padding: 20px;
}

section#where-to-find-us h2 {
    text-align: center;
    margin-bottom: 20px;
}

.platforms-wrapper {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px;
}

.platform-card {
    flex: 1;
    max-width: 300px;
    display: flex;
    justify-content: center;
}

.platform-card img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}


@media (max-width: 500px) {
    .platforms-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

}