body, html {
    height: 100%;
    width: 80%;
}

div {
    background-color: rgba(0, 255, 255, 0.14);
    width: 40%;
}

span {
    color: rgb(0, 179, 255);
}

html {
    background-color: rgba(0, 255, 255, 0.051);
}

/*dark mode because who cares*/
.dark-mode {
    background-color: #121212;
    color: #f0f0f0;
}

.dark-mode .box {
    background-color: #333;
    color: #fff;
}

.dark-mode div {
    background-color: rgba(255, 255, 255, 0.1); /* Lighter overlay */
}

.dark-mode span {
    color: #66ccff;
}

/*i hate (not) github for not rendering this*/
.box {
    width: 106%;
    line-height: 50px;
    background-color: rgb(0, 4, 255);
    color: white;
    text-indent: 5px;
}

.dark {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 10px 20px;
    cursor: pointer;
}

.dark-mode .dark {
    background-color: #444;
    color: #fff;
}