* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
}

html, body {
    overflow-x: hidden;
    width: 100%;
    height: 100%;
}

button {
    background-color: rgb(0, 0, 0);
    /* border-color: #2c2c8900; */
    opacity: 1;
    color: rgb(255, 255, 255);
    font-size: 1.2rem;
    padding: 15px;
    border-radius: 6px;
}

body {
    letter-spacing: normal;
    text-decoration: auto;
    text-rendering: optimizeLegibility;
    background-color:black;
    overflow-y: scroll;
    font-family: silkscreen;
    perspective: 1500px;
}

h1, h2, h3, h4, h5, h6, p, a {
    font-style: uppercase;
    cursor: default;
    font-family: silkscreen;
}

p {
    font-size: 1rem;
}

h1, h2, h3, h4, h5, h6  {
    font-weight: 100;
}

/* Track */
::-webkit-scrollbar {
    width: 2px; /* Width of the entire scrollbar */
}

/* Handle */
::-webkit-scrollbar-thumb {
    background-color: #333; /* Color of the scrollbar handle */
    border-radius: 6px; /* Radius of the scrollbar handle */
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background-color: #555; /* Color of the scrollbar handle on hover */
}

/* Track */
::-webkit-scrollbar-track {
    background: #000000; /* Color of the scrollbar track */
}

@font-face {
    font-family: silkscreen;
    src: url("Silkscreen-Regular.ttf");
}

.fadeDivAnim {
    animation: fade-out-2 4s forwards;
}

@keyframes fade-out-2 {
    0% {
        /* opacity: 0; */
        opacity: 1;
    }

    100% {
        /* opacity: 1;  */
        opacity: 0;
    }
}

@keyframes fade-out-2 {
    0% {
        /* opacity: 0; */
        opacity: 0;
    }

    100% {
        /* opacity: 1;  */
        opacity: 1;
    }
}

.footer {
    margin-bottom: 0;
    display: flex;
    justify-content: center;
    bottom: 0;
    color: rgba(255, 0, 0, 0.555);;
    padding: 50px;
    padding-top: 100px;
    margin-top: 100px;
}

.centerHeaderGeneral {
    animation: moveElementsForHeaderAnim 4s ease, fadeAnimStart 4s ease;
    padding: 100px;
    display: flex;
    width: 100%;
    height: auto;
    justify-content: center;
    text-align: center;
    color: rgba(255, 0, 0, 0.555);
}

.fade-in-div {
    animation: fade-in 4s linear;
}

.showAnnoucements {
    /* border: 5px solid red; */
    animation: moveElementsForHeaderAnim 4s ease, fadeAnimStart 4s ease;
    perspective: 1500px;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: auto auto;
    justify-content: center;
    align-items: center;
    gap: 150px;
    row-gap: 250px;
    /* border: 15px solid rgb(8, 8, 8); */
    border-radius: 10px;
}

.showCard {
    margin-top: -200px;
    font-weight: bold;
    padding: 1em;
    text-align: right;
    color: #181a1a;
    
    width: 325px;
    height: 487.5px;
    box-shadow: 0 1px 5px #00000099;
    
    background-image: url("images/twentyFourPoster.png");
    background-size: cover;
    
    position: relative;
    
    transition-duration: 300ms;
    transition-property: transform, box-shadow;
    transition-timing-function: ease-out;
    transform: rotate3d(0);
    
}

.showCard:hover {
    transition-duration: 150ms;
    box-shadow: 0 5px 20px 5px #00000044;
    cursor: pointer;
}

.showCard .glow {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-image: radial-gradient(circle at 50% -20%, #ffffff22, #0000000f);
}

.mainContent-aboutus {
    animation: moveElementsForHeaderAnim 4s ease, fadeAnimStart 4s ease;
    color: rgba(255, 0, 0, 0.781);
    position: relative;
    width: 100%;
    height: auto;
    /* border: 5px solid red; */
    display: flex;
    justify-content: center;
    text-align: center;
    justify-items: center;
    align-items: center;
    padding: 60px;
    overflow: hidden;
}

@keyframes headerAnim {
    0% {
        transform: translateY(100%); /* Start off-screen to the left */
    }

    50% {
        transform: translateY(100%); /* Start off-screen to the left */
    }

    100% {
        transform: translateY(0%); /* Move to the center */
    }
}

@keyframes moveElementsForHeaderAnim {
    0% {
        transform: translateY(100%); /* Start off-screen to the left */
    }

    50% {
        transform: translateY(100%) /* Start off-screen to the left */
    }

    100% {
        transform: translateY(0%); /* Move to the center */
    }
}

@keyframes fadeAnimStart {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.nav {
    animation: headerAnim 4s ease;
    margin-top: 60px;
    padding-bottom: 60px;
    /* border: 5px rgba(19, 25, 47, 0.281) solid; */
    z-index: 999999;
    justify-content: center;
    display: grid;
    position: relative;
    top: 0%;
    width: 100%;
    
    
    align-items: center;
    /* background-image: url("images/jbheader.JPG"); */
    
    /* height: 90px; */

    color: #5c5c5c;
    font-size: 1rem;
}

.flexcenter {
    text-align: center;
    padding: 20px;
    width: 100%;
    /* border: 5px solid red; */
    display: flex;
    justify-content: center;
    position: relative;
}

.nav__link {
    animation: fadeAnimStart 4s ease;
    display: block;
    right: 0px;
    position: fixed;
    top: 11.5%;
    padding: 6px;
    /* border: 5px rgba(28, 38, 74, 0.281) solid; */

}

.nav__link a {
    display: block;
    text-align: center;
    padding: 20px;
    opacity: 0.5;
    margin: 0px;
    transition: 0.4s;
    color: rgb(255, 1, 1);
}

.nav__link a:hover {
    opacity: 1;
    margin-left: 14px;
    margin-right: 14px;
    cursor: pointer;
    display: inline-block;
    padding: 15px 20px;
}

.hide {
    display: none;
}

/* .hamburger {
    padding: 20px;
    cursor: pointer;
}

.hamburger .line {
    display: block;
    width: 37px;
    height: 5px;
    margin-bottom: 10px;
    background-color: rgba(255, 255, 255, 0.495);
} */

.nav__link a {
    display: inline-block;
    padding: 15px 20px;
}

.nav__link {
    display: block;
    position: static;
    width: auto;
    border: 0px;
    /* margin-right: 90px; */

}

@media screen and (min-width: 618px) {
    
}

@media screen and (max-width: 853px) {
    .showAnnoucements {
        margin-top: 200px;
        grid-template-columns: auto;
    }
}

@media screen and (max-width: 450px) {
    .headerLogo h1 {
        font-size: 2rem;
    }
}

@media screen and (min-width: 450px) {
    .headerLogo h1 {
        font-size: 2.4rem;
    }
}