.top-banner {
    background-color: #343a40;
    padding: 10px 0;
    text-align: center;
    position: sticky !important;
}

.top-banner .container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo {
    height: 80px;
    width: auto;
    margin-right: 10px;
}

.club-name {
    margin-top: 10px;
    font-size: 60px;
    color: #ffffff;
}


@media screen and (max-width: 1000px) {
    .club-name {
        font-size: 40px;
        /* Adjust the font size for smaller screens */
    }
}

@media screen and (max-width:500px) {
    .club-name {
        font-size: 30px;
        /* Adjust the font size for smaller screens */
    }

    .top-banner {
        position: unset !important;
    }
}


@media screen and (max-height:400px) {
    .club-name {
        font-size: 30px;
        /* Adjust the font size for smaller screens */
    }

    .logo {
        height: 50px;
    }

    .top-banner {
        position: unset !important;
    }
}