@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

*{
    font-family:Arial, Helvetica, sans-serif;
}

#banner{
    width: 100%;
}

#header{
    margin: auto;
    width: fit-content;
    border: 2px solid black;
    border-radius: 10px;
    text-align: center;
    padding: 5px 30px;
    background-color: red;
    color: white;
    line-height: normal;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);

    margin-top: 1vh;
    margin-bottom: 3vh;
}

#header p{
    font-size: 4vh;
    font-weight: 600;
    clear: both;
}

.container {
    --card-shadow: #f3f3f3;
    --card-inner: #ffffff;
    width: 100%;
    display: block;
    justify-content: center;
    margin: auto;
        	
    background-color: #fff;
    margin-bottom: 10px;
        	
    font-family:Arial, Helvetica, sans-serif;
    overflow:auto;
    height: fit-content;
    padding-bottom: 10px;

    border: 1px solid black;
    border-radius: 5px;
    box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.3);

    text-align: center;

}

.JF, .KF{
    display: block;
    align-items: center;
    text-align: center; 

}

.JF hr, .KF hr{
    display: none;
}

.JF img, .KF img{
    display: none;
}


#JFCard, #KFCard{
    align-items: center;
    text-align: center;
    margin: 0;
    width: fit-content;
    margin-top: 5vw;
    line-height: normal;
}

#JFCard span, #KFCard span{
    color: red;
    font-weight: 400;
}




.navbar{
    display: none;
}





@media (min-width: 900px) { 
    .navbar{
        display: flex;
        justify-content: space-between;
    }

    .navbar_socials{
        display: flex;
        align-items: center;
        justify-content: flex-end;
        margin: 20px;
    }

    .navbar_buttons{
        margin: 30px;
    }

    .navbar_buttons button{
        border: none;
        border-radius: 10px;
        text-decoration: none;
        appearance: none;
        margin: 5px;
        width: auto;

        --bg: #FE0000;
        --hover-text: #d4ffff 000;
        font-weight: 600;
        color: #fff;
        border: 1px solid var(--bg);
        border-radius: 4px;
        padding: 0.8em 2em;
        background: var(--bg);
        transition: 0.2s;
    }

    .navbar button:hover{
        color: var(--hover-text);
        transform: translate(-0.25rem,-0.25rem);
        background: var(--hover-bg);
        box-shadow: 0.25rem 0.25rem var(--bg);
    }
    
    .navbar button:active {
        transform: translate(0);
        box-shadow: none;
      }
    .container {
        width: 80%;
    }

    .container h1{
        padding-top: 5vw;
    }
    .card{
        width: 80%;
        background-color: white;
        justify-content: center;
        text-align: center;
        margin: auto;

        border: 1px solid white;
        border-radius: 20px;
        box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.3);

        padding: 1vw;
    }

    .card a{
        text-decoration: none;
        color: red;
    }

    .card a:hover{
        color: #d43535;
        text-shadow: 1px 1px 2px black, 0 0 25px #ffa1a1, 0 0 10px #ff0000;
    }

    .JF-grid, .KF-grid{
        display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1rem;
    }
    
    .JF-grid img, .KF-grid img{
        display: none;
        margin-top: 6vw;
        margin-left: 5vw;
        width: 10vw;
    }
    
    
    #JFCard, #KFCard{
        margin-left: 10vw;
        display: block;
        width: 40vw;
        margin-top: 5vw;
        line-height: normal;
    }
    
    #JFCard span, #KFCard span{
        color: red;
        font-weight: 400;
    }


}

@media (min-width: 1120px){
    .JF-grid img, .KF-grid img{
        display: block;
    }
}