* {
    box-sizing: border-box;
}

body {
    background-color: #ffffff;
    background-image: linear-gradient(0deg, #ffffff 50%, #000 50%);
    background-size: 40px 40px;
    margin: 0;
    animation: stripeBrighten 1s ease-in-out infinite alternate;
}

@keyframes stripeBrighten {
    0% {
        /* low contrast start */
        background-image: linear-gradient(0deg, #474747 50%, #1b1b1b 50%);
    
    }

    100% {
        /* bright white stripe */
        background-image: linear-gradient(0deg, #ffffff 50%, #000000 50%);
    }
}

.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;
    animation: textGlow 1s ease-in-out infinite alternate;

}

@keyframes textGlow {
    0% {
        text-shadow:
            0 0 0px #ffffff,
            0 0 0px #ffffff,
            0 0 0px #ffffff;
    }

    100% {
        text-shadow:
            0 0 10px #ffffff,
            0 0 20px #ffffff,
            0 0 40px #ffffff;
    }
}


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;
}

a {
    text-decoration: none;
  }

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

  .active {
    text-decoration: underline;
  }

.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%;

}


