* {
    box-sizing: border-box;
}

body {
    background-color: aliceblue;
    opacity: 1;
    margin: 0;
}

.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: #000000;
    font-family: "puffin-arcade-liquid", sans-serif;
    font-weight: 800;
    font-style: normal;
    font-size: 80px;
    text-align: center; 
    backdrop-filter: blur(2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); 
    padding: 20px;

}

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

}

.blur {
    display: flex;
    font-family: "lores-9-wide", sans-serif;
    font-size: x-large;
    font-style: normal;
    color: rgb(30, 30, 70);
    justify-content: center;
    margin-left: 250px;
    margin-right: 250px;
    margin-top: 5px;
    margin-bottom: 5px;
    animation: blurOut 3s ease-in-out infinite alternate;
}

@keyframes blurOut {
    0% {
        filter: blur(0px);
    }

    100% {
        filter: blur(5px);
    }
}