.dark-mode {
    background-color: #444444;
    color: #bebebe;
}
.light-mode {
    background-color: #a5a5a5;
    color: #000000;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

div {
    padding: 20px;
}

aside {
    padding: 10px;
    border-bottom: 2px solid #302f2f;
    border-left: 2px solid #302f2f;
    border-right: 2px solid #302f2f;
}

.left {
    float: left;
    background-color: rgba(0, 0, 0, 0.507); /* rgb(103, 243, 103); */
    color: white; /* black */
    margin: 0 20px 0 0;
}
.right {
    float: right;
    background-color: rgba(0, 0, 0, 0.507); /* rgb(170, 44, 44); */
    margin: 0 0 0 20px;
}

img {
    padding: 10px;
    border: 2px solid #302f2f;
}

a:hover {
    color: rgb(203, 71, 255);
    text-decoration: underline;
}
a {
    text-decoration: none;
    color: rgb(99, 88, 255)
}
.no-link a {
    color: inherit;
    text-decoration: none;
}

iframe {
    border: 0;
    background-color: transparent;
}

.topnav {
    background-color: rgba(55, 233, 55, 0.719);
    overflow: hidden;
    border: 2px solid #302f2f;
}
.topnav a {
    float: left;
    color: #000000;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
    border-bottom: 4px solid #302f2f;
    margin: 0 5px;
}
.topnav a:hover {
    background-color: #666666;
    color: white;
}
.topnav div{
    padding: 0px;
    float: right;
}
.topnav .borded {
    float: left;
    border-left: 1px solid black;
}
.topnav .account a {
    border-bottom: 0;
    text-decoration: underline;
}
.topnav .account a:hover {
    color: white;
    text-decoration: none;
}

button {
    border: 2px solid #252525;
    border-radius: 4px;
    background-color: #4caF50;
    color: black;
    text-align: center;
    justify-content: center;
    padding: 10px 5px;
    margin: 5px 0;
    transition: all .2s ease;
    box-shadow: 0 3px 8px rgba(0, 0, 0, .2);
}
button:hover {
    cursor: pointer;
    background-color: #346e36;
}
button:focus {
    outline: none;
}

p {
    margin-block-start: 0;
    margin-block-end: 0;
}
