@media screen and (max-width: 1100px) {
    .welcomeBox {
        font-size:2em;
    }
    .inner_form_wrapper {
        width: 100%;
    }
    .Number {
        opacity: .3;
    }
    .inner_form_wrapper input {
        backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    }
    .btn-action{
        padding: 1rem;
    }
}
@media screen and (max-width: 767px) {
    .Game_wrapper{
        flex-direction: column;
        gap: 1em;
    }
    .face {
        bottom: 25%;
        
    }
    .inner_form_filter_wrapper {
        font-size: .7em;
    }
    .face img {
        max-width: 500px;
    }
    .toggle_body {
        min-height: auto;
    }
    .details {
        position: relative;
    }
    .information_wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 1em
    }
    .scoreboard {
        padding: .5em;
        font-size: 2em;
        border-radius: 1rem;
        margin-bottom: 0;
    }
    .innerScoreboard {
        flex-direction: row;
        gap: .25em;
    }
    .smaller_font {
        font-size: .5em;
        line-height: 1;
    }
    .information_wrapper  .btn-action {
        margin-top: 0;
    }
    .players_completed {
        grid-column: span 3;
        margin-top: 0;
    }
    .innerScoreboard{
        width: min-content;
    }
}
@media only screen and (max-width: 600px) {
    .alt_record_detail_wrapper{
        width: 100%;
    }
    .navigation_item_wrapper.active span.nav_item_text {
        font-size: 1.5em;
        top: 0;
        margin-left: .25em;
    }
    .navigation_item_wrapper.active h4.nav_icon {
        font-size: 2em;
        width: 100%;
    }
    .call_to_action {
        display: none;
    }
    span.nav_item_text {
        position: static;
        font-size: 2em;
        line-height: .8;
    }
    .navigation_item_wrapper {
        display: block;
    }
    h4.nav_icon {
        width: 100%;
        font-size: 2em;
        justify-content: flex-end;
        margin-top: 0.5em;
    }
    .navigation_item_wrapper {
        height: auto;
        padding: 5px;
    }
    .navigation_item_wrapper.home {
        padding-bottom: 3em;
        text-align: center;
    }
    .colorSwitcher {
        top: 3.5em;
        width: 85%;
        justify-content: space-between;
        position: absolute;
    }
    .detail_value {
        font-size: 2em;
    }
    .details{
        padding: 0 1em;
    }
    .inner_form_wrapper {
        padding: .5rem 1rem;
    }
}
@media only screen and (max-width: 500px) { 
    
    .face {
        bottom: inherit;
        top: 1em;
        width: 200px;
        height: 200px;
        border: 1px solid var(--text_color);
        overflow: hidden;
        border-radius: 50%;
        right: -30px;
        display: flex;
        justify-content: center;
    }
    .Number {
        right: -50px;
    }
    .welcomeBox {
        font-size: 1.5em;
        padding: 0.5em;
    }
  
}
/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 601px) and (max-width: 768px) {
    /* Styles for small devices go here */
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 769px) and (max-width: 992px) {
    /* Styles for medium devices go here */
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 993px) and (max-width: 1200px) {
    /* Styles for large devices go here */
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1201px) {
    /* Styles for extra large devices go here */
}