.navbar-custom {
    height: 125px;
}

.navbar-custom, .footer, .modal-content, .modal-dialog {
    background-color:#02343d;
}

body[data-layout-mode="horizontal"] .content-page {
    padding-left:0;
    padding-right:0;
}

.card {
    background-color: #02343d;
}

body {
    background-color: #032a31;
    font-size:1rem;
    line-height: 1.7;
    font-family: "Rubik";
}
small {
    font-size: 0.8rem;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Oswald", sans-serif;
    text-transform:uppercase;
}

h1 {
    color:#fff;
    margin:0.5em 0;
}

.header-title, .card-title {
    color:#f1556c;
    padding-bottom:0.5em;
    border-bottom:1px solid #f1556c;
}

.card {
    border-radius:10px;
}


th {
    font-weight:300;
    text-transform: uppercase;
    font-size:0.75em;
}

td, td * {
    hyphens: auto;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

footer {
    font-size:0.75rem;
}


.logo-sm img {
    width:200px;
    height:auto;
    position:relative;
    top:-40px;
    left:-15px;

    transition: width 0.3s ease;
}

.logo-lg img {
    width:300px;
    height:auto;
    position:relative;
    top:-70px;

    transition: all 0.3s ease;

}

.navbar-custom {
    transition: height 0.3s ease;
}

.navbar-custom .caption {
    line-height:130px;
    transition: all 0.3s ease;
}

@media (max-width: 576px) {
    .navbar-custom {
        height: 70px;
    }

    .navbar-custom .caption {
        display:none !important;
    }

    .topnav-menu {
        float:right;
        height:70px;
    }

    body.scrolled .logo-sm img {
        width:164px;
        top:-50px;
    }

    body {
        font-size:1rem;
    }
    h1 {
        font-size:1.5rem;
    }
}

body.scrolled {
    .navbar-custom {
        height: 70px;
    }

    .navbar-custom .caption {
        line-height: 70px;
        font-size:16px;
    }

    .logo-lg img {
        width:200px;
        top:-60px;
    }


    .logo-sm img {
        width:130px;
        top:-20px;
        left:0;
    }


}


.final-score {
    color: #4be34a;
}

.flashing-score {
    color: #d0d053;
    animation: flashing 1.5s infinite;
}

@keyframes flashing {
    0% {
        opacity: 1;
    }
    70% {
        opacity: 0.3;
    }
    100% {
        opacity: 1;
    }
}



.trophy {
    font-size: 20px; /* Größe des Icons */
    animation: glow 2s infinite; /* 2 Sekunden Animationszeit, endlos wiederholen */
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.gold {
    color: #FFD700;
}

.silver {
    color: #C0C0C0;
}

.bronze {
    color: #CD7F32;
}


/* Animation für leichtes Scheinen */
@keyframes glow {
    0%, 100% {
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.5); /* Keine Schatten */
    }
    50% {
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.2); /* Leicht intensiverer Schatten */
    }
}


