* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: #0c1c0b;
    overflow: hidden;
}

/* animated layer */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;

    background: radial-gradient(
        circle at 40% 40%,
        rgb(0, 0, 0) 0%,
        rgb(41, 144, 84) 50%,
        rgba(191, 98, 126, 1) 100%
    );

    background-size: 200% 200%;
    filter: blur(40px);

    animation: blobMove 1s ease-in-out infinite alternate;
}

@keyframes blobMove {
    0% {
        background-position: 30% 40%;
    }

    50% {
        background-position: 70% 60%;
    }

    100% {
        background-position: 50% 30%;
    }
}

.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: #e5e5f7;
    font-family: "puffin-arcade-liquid", sans-serif;
    font-weight: 800;
    font-style: normal;
    font-size: 80px;
    text-align: center; 
    backdrop-filter: blur(4.5px);
    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;
    text-decoration: none;
}

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

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

}


