body, html {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    background-image: url('/images/spawn.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    color: rgb(235, 235, 235);
}

nav {
    background-color: #000000;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
}

nav .logo {
    font-size: 2.1rem;
    font-weight: bold;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 1rem;
    margin: 0;
    padding: 0;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.5rem;
}

nav ul li a:hover {
    text-decoration: underline;
}

.smolStatus1 {
    font-size: 0.9rem;
}

#bodyDiv {
      display: flex;
      flex-direction: column;   /* default: stack vertically */
      align-items: center;      /* center horizontally when stacked */
      justify-content: center;
      min-height: 80vh;
}

.flexDiv{
    width: 90%;               /* take most of screen width on mobile */
    max-width: 600px;         /* limit width so it doesn’t stretch too much */
    margin: 10px;
    padding: 20px;
}
.flexDiv ul li {
    font-size: 1.2rem;
    padding-bottom: 15px;
}
.flexDiv h3 {
    text-align: center;
    font-size: 1.6rem;
}

@media (min-width: 768px) {
    #bodyDiv {
        flex-direction: row;    /* side by side */
        justify-content: center;/* center the row horizontally */
        align-items: flex-start;/* align to top */
    }
}

.divCommand {
    font-size: 1.1rem;
}

.spanLink:hover {
    color: grey;
    cursor: pointer;
}