
/*Grid Layout*/

body {
    background-color: black;
    overflow-x: hidden;
    color: white;

    display: grid;
    grid-template-columns: 100%;
    margin: 0 0 0 0;
    grid-template-rows: auto 47vw 17vw 35vw 1fr;
    grid-template-areas:
            "navBar"
            "header"
            "main_title"
            "main"
            "footer";
}


/*Heading*/

header {
    background-color: black;
    overflow: hidden;
    grid-area: header;

    align-content: center;
    align-items: center;
    text-align: center;
}

#title {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    align-content: center;
    align-items: center;
    text-align: center;
    width: 67vw;
    height: 35vw;
    margin: auto;
    padding: 1vw;
}
#canvas {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
}
.hero {
    height: 100vh;
    min-height: 30em;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: "";
    background: hsla(
            0,
            0%,
            41%,
            0.25
    );
    backdrop-filter: blur(70px);
    -webkit-backdrop-filter: blur(70px);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.hero div {
    text-align: center;
    z-index: 3;
    color: white;
}
#bg-container {
    position: absolute;
    pointer-events: none;
    inset: 0;
    overflow: hidden;
    z-index: 1;
}
.bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    pointer-events: none;
    animation: float 40s linear infinite;
}

@keyframes float {
    from {
        transform: translate(var(--x-start), var(--y-start));
    }
    to {
        transform: translate(var(--x-end), var(--y-end));
    }
}



/*Category Bar*/
#main_title {
    grid-area: main_title;
    background-color: #020204;
    font-family: sans-serif, 'Montserrat';

    align-items: center;
    align-content: center;
    text-align: center;

    font-size: 250%;
}

main {
    background-image: linear-gradient(black, black, #252525);
    grid-area: main;

    align-content: center;
    align-items: center;
    text-align: center;

    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 19%;
    column-gap: 3vw;

    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    cursor: grab;
    user-select: none;
    -ms-overflow-style: none;
    overscroll-behavior: contain;
}
main::-webkit-scrollbar {
    display: none;
}
main:focus {
    outline: 3px solid white;
    outline-offset: 4px;
}


.Banner {
    align-content: center;
    align-items: center;
    text-align: center;
}
.Banner_Animation {
    border-radius: 8px;
    box-shadow: 1px 1px 5px rgba(255, 255, 255, 0.15);
    transition: box-shadow 0.3s ease-in-out;
}
.Banner_Animation:hover {
    box-shadow: 1px 2px 5px rgba(255, 255, 255, 0.7)
}