 body {
    margin:0;
    width:100vw;
    height:100vh;
} h1 {
    margin:0;
    text-align:center;
    width:100%;
} span {
    width:100vw;
} button {
    font-size:large;
    font-family:cursive;
    margin:0.5vh;
    border-color: orange;
    background-color: rgb(255, 183, 48);
    border-radius: 3px;
    cursor: pointer;
} .header {
    width:100vw;
    font-family:cursive;
    background-color:orange;
    align-items:center;
    height:14vh;
    display:flex;
    margin-bottom:1vh;
} .body {
    width:100vw;
    display:flex;
    flex-direction:column;
    flex-wrap:wrap;
    align-items:center;
} .logo {
    width:25px;
    height:25px;
    vertical-align:sub;
    cursor: pointer;
} .dark-mode {
    background-color: rgb(37, 37, 37);
    color:white;
    border-color: rgb(103, 191, 103);
} .dark-header {
    background-color:rgb(103, 191, 103);
} .button-dark-mode {
    background-color: rgb(37, 37, 37);
    color: rgb(103, 191, 103);
    border-color: rgb(103, 191, 103);
} .evil {
    color:red;
}