* {
    box-sizing: border-box;
}

body {
    background-color: #000000;
    background-image:  radial-gradient(#7a7a7a 0.4px, transparent 0.4px), radial-gradient(#7a7a7a 0.4px, #000000 0.4px);
    background-size: 5px 5px;
    background-position: 0 0,8px 8px;
    margin: 0;
    animation: staticNoise 0.08s steps(3) infinite;
}

@keyframes staticNoise {
    0% { background-position: 0 0, 8px 8px; }
    25% { background-position: 1px -1px, 9px 7px; }
    50% { background-position: -1px 1px, 7px 9px; }
    75% { background-position: 2px 0px, 10px 8px; }
    100% { background-position: 0 0, 8px 8px; }
}

.scroller {
    display: flex ;
	overflow: hidden ;
	white-space: nowrap ;
    font-family: "lores-9-wide", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: rgb(30, 30, 70);
    background-color: aliceblue;
    width: 100%
}

.scrollerItem {
    animation-duration: 15s ;
	animation-iteration-count: infinite ;
	animation-name: scroller-content ;
	animation-timing-function: linear ;
	padding: 5px 15px 5px 15px ;
}

@keyframes scroller-content {
    from {
        transform: translateX( 0% );
    }
    to {
        transform: translateX( -100% );
    }
}

.flexContainer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 25px;
    position: fixed;
    inset: 0px;
    width: 12rem;
    height: 5rem;
    max-width: 100vw;
    max-height: 100dvh;
    margin: auto;
   
}

h1 {
    margin-top: 0;
    margin-bottom: 0;
    color: #ffffff;
    font-family: "puffin-arcade-liquid", sans-serif;
    font-weight: 800;
    font-style: normal;
    font-size: 80px;
    text-align: center; 
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); 
    padding: 20px;

}

a {
    text-decoration: none;
  }

  li a:hover:not(.active) {
    background-color: rgb(197, 204, 210);
  }

  .active {
    text-decoration: underline;
  }

ul {
    margin-top: 0;
    margin-bottom: 0;
    text-align: center;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: center;
    gap: 40px;
}

.navigationItem {
    background-color: aliceblue;
    border-color: black;
    list-style-type: none;
    padding: 10px;
    border: 4px solid #000000;
    box-shadow: 6px 6px 0px #000000, inset -2px -2px 0px #35cade;
    font-family: "lores-9-wide", sans-serif;
    font-weight: 400;
    font-style: normal;
    text-decoration: none;
}

.description {
    bottom: 0;
    position:fixed;
    font-family: "lores-9-wide", sans-serif;
    font-weight: 400;
    font-style: normal;
    padding: 10px;
    text-align: center;
    background-color: aliceblue;
    width:100%;

}







