/* styles.css */
body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    margin: 0;
    font-family: Arial, sans-serif;
}
body.dark-mode {
    background-color: #222222;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    margin: 0;
    font-family: Arial, sans-serif;
}

body.dark-mode a {
    color: #1E90FF;
}

header, nav, main, footer {
    text-align: center;
    max-width: 600px; /* Adjust as needed */
    padding: 20px;
}
nav ul {
    list-style-type: none;
    padding: 0;
}
nav ul li {
    display: inline;
    margin-right: 20px;
}
nav ul li:last-child {
    margin-right: 0;
}
#header {
    position: absolute;
    top: 0;
    left: 0;
    margin: 10px; /* Adjust the margin as needed */
    cursor: pointer; /* Show pointer cursor on hover */
}

/* Reduce margin-bottom for the header */
header h1 {
    margin-bottom: -27px; /* Adjust as needed */
}

h5 {
    margin-top: 0px; /* Adjust as needed */
    margin-bottom: 10px; /* Adjust as needed */
}


#changeUsernameForm {
    display: none;
}

button {
    background-color: #222222;
    color: white;
    margin: 1px;
    border-radius: 5px;
}

.dark-mode button {
    background-color: lightgrey;
    color: #222222;
    margin: 1px;
    border-radius: 5px;
}