* {
    box-sizing: border-box;
}

body {
    background: #2a5427;
    background: radial-gradient(circle,rgba(42, 84, 39, 1) 0%, rgba(36, 125, 73, 1) 50%, rgba(191, 98, 126, 1) 100%);
    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: #e5e5f7;
    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;

}

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

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

}


