@media (prefers-color-scheme: dark) {
    body {
        background-color: #000000;
        color: #ffffff;
    }

    nav>a {
        color: #ffffff;
        border-color: #ffffff;
    }

    #logo {
        filter: drop-shadow(0 0 2px #ffffff);
    }
}



#logo {display: block; margin: auto;}

* {
  box-sizing: border-box;
}

nav {
    display: flex;
    justify-content: space-between;
    margin: 10px;
}

nav>a {
    text-decoration: none;
    border: 2px dashed;
    padding: 4px;
    text-align: center;
}

.bubble {
    position: relative;
    background: #ffffff;
    color: #000000;
    font-size: 20px;
    text-align: center;
    width: 100%;
    border-radius: 10px;
    padding: 6px;
    border: #000000 solid 2px;
}
#container {
    margin: auto;
    width: 800px;
}

.center {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px;
}

#statuscafe {
    padding: .5em;
    background-color: azure;
    border: 1px solid midnightblue;
}
#statuscafe-username {
    margin-bottom: .5em;
}
#statuscafe-content {
    margin: 0 1em 0.5em 1em;
}