body {
    background-image: url("/public/assets/background.png");
    background-size: cover;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

h1 {
    color: aliceblue;
}

p {
    color: azure;
}

#navbar {
    background-color: #AD7839;
    padding: 0.3cm;
    border-radius: 8px;
}

.navbar_btn {
    border-radius: 8px;
    text-decoration: none;
    margin: 8px;
    transition-property: all;
    transition-duration: 0.5s;
}

.navbar_btn:hover {
    background-color: #cf9a59;
    box-shadow: 0 0 0 3px #cf9a59;
    border-radius: 3px;
    margin: 8px;
}

.navbar_btn:link, .navbar_btn:visited {
    color: white;
}

#icon {
    position: relative;
    text-align: center;
}

#username {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(10%, -100%);
    font-size: 50px;
}

#mango {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-100%, -50%);
}

.link:link, .link:visited {
    color: white;
}

#links {
    position: relative;
    text-align: center;
    display: list-item;
    text-decoration: none;
    color: white;
}

.link {
    margin-bottom: 5px;
}