body {
    color: rgb(0, 0, 0);
    background-color: rgb(220, 229, 224);
}

section {
    max-width: 500px;
    width: 90%;
    margin: 0 auto;
    margin-top: 10px;
    margin-bottom: 10px;

    border-left: solid 4px;
    border-right: solid 4px;
    border-top: solid 2px;
    border-color: rgba(106, 162, 110, 0.4);
    border-bottom: solid 8px rgba(106, 162, 110, 0.7);
    border-radius: 15px;

    background-color: rgba(235, 235, 235, 0.6);
    padding: 10px;

    text-align: center;
}

.subsection {
    max-width: 500px;
    width: 90%;
    margin: 0 auto;
    margin-top: 10px;
    margin-bottom: 10px;

    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 15px;
    padding: 10px;

    text-align: center;
}

table {
    max-width: 500px;
    width: 80%;
    margin: 0 auto;
    font-size: medium;
}

th,
td {
    background: rgba(106, 162, 110, 0.1);
    padding: 2px 2px;
    text-align: center;
    font-size: small;
    font-weight: bold;
}


td:first-child {
    text-align: right;
    max-width: 80px;
}

td:last-child {
    text-align: center;
    font-size: large;
}

footer {
    max-width: 500px;
    width: 90%;

    margin: 5px auto;
    margin-top: 10px;
    margin-bottom: 10px;

    border-left: solid 4px;
    border-right: solid 4px;
    border-top: solid 2px;
    border-color: rgba(106, 162, 110, 0.4);
    border-bottom: solid 8px rgba(106, 162, 110, 0.7);
    border-radius: 15px;

    display: block;
    text-align: center;
    padding: 5px;
}

h1 {
    max-width: 500px;
    width: 90%;
    margin: 10px auto;
    font-size: x-large;

    border-top: solid 2px;
    border-left: solid 3px;
    border-right: solid 3px;
    border-bottom: solid 5px;
    border-color: rgba(106, 162, 110, 0.7);
    background-color: rgba(255, 255, 255, 0.6);
    display: block;
    text-align: center;
}

h2 {
    max-width: 500px;
    width: 80%;
    margin: 10px auto;
    border-top: solid 2px;
    border-left: solid 2px;
    border-right: solid 2px;
    border-bottom: solid 5px;
    border-color: rgba(106, 162, 110, 0.7);
    display: block;
    font-size: large;
    display: block;
    text-align: center;
}

h3 {
    max-width: 500px;
    width: 80%;
    margin: 10px auto;

    border-bottom: solid 5px;
    border-color: rgba(106, 162, 110, 0.7);
    display: block;
    font-size: medium;
    display: block;
    text-align: center;
}

img {
    border: 3px solid rgba(106, 162, 110, 0.2);
    max-width: 100%;
    height: auto;
    margin: auto;
    display: block;
}

video {
    border: 3px solid rgba(106, 162, 110, 0.2);
    max-width: 100%;
    height: auto;
    margin: auto;
    display: block;
}

p {
    font-size: medium;
    word-wrap: break-word;
    white-space: normal;
    line-height: 1.5;
    text-align: left;
}

.transparent {
    opacity: 0.2;
}

b {
    font-size: larger;
    word-wrap: break-word;
    white-space: normal;
    line-height: 2.0;
    text-align: center;
    display: block;
}

a {
    font-weight: bold;
    color: rgb(80, 80, 250);
    background-color: transparent;
    text-decoration: underline;
}

a:visited {
    font-weight: bold;
    color: rgb(255, 80, 80);
    background-color: transparent;
    text-decoration: underline;
}

ul {
    margin: 0 auto;
    max-width: 430px;
}

[data-align="left"] {
    text-align: left;
}

[data-align="center"] {
    text-align: center;
}

[data-align="right"] {
    text-align: right;
}