html {
    font-family: "Open Sans";
    color: #ffeeee;
}

/*
#b54040	(181, 064, 064)
#cb7070	(203, 112, 112)
#e19c9c	(225, 156, 156)
#f5cfcf	(245, 207, 207)
#ffeeee	(255, 238, 238)
*/

body {
    margin: 0;
    padding: 0;
    background-color: #b54040;
}

small {
    font-size: 10px;
}

.login-button {
    width: 200px;
    height: 30px;
    background-color: #f5cfcf;
    color: #cb7070;
    border: 0;
    border-radius: 5px;
    cursor: pointer;
}

#no-user {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(181, 064, 064, 0.75);
    text-align: center;
    backdrop-filter: blur(2px);
}

footer {
    position: fixed;
    bottom: 10px;
    left: 10px;
    right: 10px;
    height: 35px;
    z-index: 9999;
    background-color: #b54040;
    border-radius: 5px;
    padding: 5px;
    opacity: 0.75;
    transition: 150ms ease-out;
    box-shadow: 0 0 10px black;
}

footer:hover {
    opacity: 1;
    transition: 150ms ease-out;
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

li {
    padding: 0;
    margin: 0;
}

#footer-menu {
    display: flex;
    list-style: none;
    justify-content: space-between;
    margin: 0;
    padding: 0;
    padding: 5px;
    padding-right: 5px;
}

#footer-menu li {
    display: flex;
    align-items: center;
}

#footer-copyright {
    padding: 0;
    margin: 0;
    text-align: left;
    display: flex;
    align-items: start;
}

#footer-links {
    text-align: center;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0;
    margin: 0;
}

#footer-user {
    text-align: right;
    display: flex;
    align-items: end;
    padding: 0;
    margin: 0;
}

#footer-links li {
    display: inline;
    padding: 0;
    margin: 0;
    margin-left: 5px;
    margin-right: 5px;
}

#footer-user li {
    display: inline;
    padding: 0;
    margin: 0;
}

#footer-user button {
    background-color: #f5cfcf;
    color: #cb7070;
    border: 0;
    border-radius: 5px;
    margin-left: 10px;
    cursor: pointer;
    width: 150px;
    height: 25px;
}

a {
    color: #f5cfcf;
    text-decoration: none;
    font-weight: bold;
}

button {
    font-weight: bold;
}