body {
    background-color: #ffe302;
    border: 2px solid black;
    border-radius: 16px;
    font-family: sans-serif;
    margin-left: auto;
    margin-right: auto;
    max-width: 1024px;
    min-width: 256px;
    padding-top: 8px;
    padding-bottom: 24px;
    padding-left: 24px;
    padding-right: 24px;
}

nav ul {
    list-style-type: none;
    background-color: #ffffff;
    border: 2px solid #111111;
    border-radius: 10px;
    font-family: sans-serif;
    font-weight: bold;
    padding: 16;
}

nav ul li {
    display: inline;
    border-right: 2px solid #111111;
    padding-right: 8px;
    padding-left: 8px;
}

nav ul li:last-child {
    border-right: none;
}

nav ul li a {
    text-decoration: none;
    color: #111111;
}

nav li selected {
    color: #606060;
}

a:link {
    color: black;
}

a:visited {
    color: purple;
}

a:hover {
    text-decoration: underline;
}

a:active {
    text-decoration: underline;
    background-color: black;
    color: white
}

table {
    font-size: 70%;
    width: 100%;
    border-collapse: collapse;
}

th,
td {
    border: 1px solid #000000;
    padding: 8px;
    text-align: left;
}

th {
    background-color: #fcab68;
}

td {
    background-color: #000000;
}

@import url('https://fonts.googleapis.com/css2?family=Stick+No+Bills:wght@200&display=swap');

body {
    font-family: 'Stick No Bills', sans-serif;
    background-color: white;
}

html {
    box-sizing: border-box;
    background-color: gray;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

header {
    background-color: #F45556;
}

nav {
    background-color: #FFB000;
}

article {
    background-color: #FFD239;
}

section {
    background-color: #88BB75;
    margin-bottom: 24px;
    min-height: 320px;
    padding-left: 24px;
    padding-right: 24px;
}

aside {
    background-color: #1EADDF;
}

footer {
    background-color: #BA99C0;
}

body {
    background-color: white;
    color: #111111;
    font-family: sans-serif;
    margin-left: auto;
    margin-right: auto;
    max-width: 1024px;
    min-width: 256px;
    padding-left: 24px;
    padding-right: 24px;
}

img.small {
    float: left;
    height: 200px;
    margin-bottom: 24px;
    margin-right: 24px;
}

img.medium {
    max-width: 360px;
    width: 50%;
}

img.large {
    width: 100%
}

nav ul {
    list-style-type: none;
    background-color: #B577B5;
    border: 4px solid #111111;
    border-radius: 10px;
    font-family: sans-serif;
    font-weight: bold;
    padding: 16px;
}

nav ul li {
    display: inline;
    border-right: 2px solid #111111;
    padding-left: 8px;
    padding-right: 8px;
}

nav ul li:last-child {
    border-right: none;
}

nav ul li a {
    text-decoration: none;
    color: #111111;
}

nav li.selected {
    color: #606060;
}

nav ul li a:hover {
    text-decoration: underline;
}

header p {
    float: left;
    font-size: 16px;
    font-weight: bold;
    margin-top: 0px;
}

header h1 {
    font-size: 16px;
    text-align: right;
}

footer p.copyright {
    float: left;
    margin-top: 0px;
}

footer p.contact {
    text-align: right;
}

body,
section,
img {
    border: 2px solid Gray;
    border-radius: 16px;
}

@media all and (min-width: 900px) {
    article {
        float: left;
        width: 66%;
    }

    aside {
        float: left;
        padding-left: 24px;
        width: 34%;
    }

    footer {
        clear: both;
    }
}