body {
    background-color: #E3E0D1;
}

#main_header {
    width:100%;
    margin:0 auto;
    /* background:rgba(214, 196, 55, 0.8); */
    background-color: #EDEBDF;
    text-align: center;
}

#navi_container{
    display: flex;
    flex-direction: row;
	align-items: center;
    justify-content: center;
    background-color: #819FF7;
}

.flex_stuff{
    display: flex;
    flex-direction: row;
	align-items: center;
    justify-content: center;
}

.flex_stuff>div{
    margin: 10px;
}

.navi_links {
    margin: 10px;
    background-color: lightblue;
    border: 1px solid blue;
    padding: 5px;
}

a {
    text-decoration: none;
}

.messages {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.messages .message {
    opacity: 1;
    transition: opacity 1s ease-out; /* Smooth fade-out effect */
}

.messages .message.hidden {
    opacity: 0;
    pointer-events: none; /* Prevent interaction with hidden elements */
}
