body {
    background: rgba(110, 115, 245, 0.2);
}

section {
    max-width: 500px;
    width: 90%;
    margin: 0 auto;
    margin-top: 10px;
    margin-bottom: 10px;

    border-bottom: solid 5px;
    border-color: rgba(210, 145, 205, 0.5);
    border-radius: 15px;

    background-color: rgba(255, 255, 255, 0.6);
    padding: 10px;

    text-align: center;
}

.subsection {
    max-width: 500px;
    width: 90%;
    margin: 0 auto;
    margin-top: 10px;
    margin-bottom: 10px;

    border: solid 4px;

    border-radius: 10px;
    border-color: rgba(210, 145, 205, 0.5);
    padding: 10px;
    text-align: center;
}

table {
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
    font-size: medium;

    border: solid 4px;
    border-radius: 10px;
    border-color: rgba(210, 145, 205, 0.5);
}

th,
td {
    background: rgba(210, 145, 205, 0.1);
    padding: 2px 2px;
    text-align: center;
    font-size: small;
    font-weight: bold;
    padding: 5px;
}

dl {
    max-width: 500px;
    width: 90%;
    margin: 0 auto;
    text-align: center;
}

dt,
dd {
    margin: 0 auto;
    line-height: 1.5;
    text-align: center;
}

textarea {
    max-width: 400px;
    width: 90%;
    margin: 5px auto;
    resize: none;
    padding: 5px;
}

footer {
    max-width: 500px;
    width: 90%;

    margin: 5px auto;
    margin-top: 10px;
    margin-bottom: 10px;

    border-bottom: solid 4px;
    border-radius: 10px;
    border-color: rgba(210, 145, 205, 0.5);
    background-color: rgba(255, 255, 255, 0.6);

    display: block;
    text-align: center;
    padding: 5px;
}

h1 {
    max-width: 500px;
    width: 90%;
    margin: 10px auto;
    font-size: x-large;

    border-bottom: solid 5px;
    border-radius: 10px;
    border-color: rgba(210, 145, 205, 0.5);
    background-color: rgba(255, 255, 255, 0.6);
    display: block;
    text-align: center;
}

h2 {
    max-width: 500px;
    width: 90%;
    margin: 10px auto;
    font-size: larger;

    border-bottom: solid 7px;
    border-color: rgba(210, 145, 205, 0.5);
    display: block;
    text-align: center;
}

h3 {
    max-width: 500px;
    width: 80%;
    margin: 10px auto;
    font-size: medium;

    border-bottom: solid 4px;
    border-color: rgba(210, 145, 205, 0.5);
    display: block;
    text-align: center;
}

img {
    border: 3px solid rgba(210, 145, 205, 0.2);
    max-width: 100%;
    height: auto;
    margin: auto;
    display: block;
}

video {
    border: 3px solid rgba(210, 145, 205, 0.2);
    max-width: 100%;
    height: auto;
    margin: auto;
    display: block;
}

.iframe {
    border: 3px solid rgba(210, 145, 205, 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;
}

.date {
    border-bottom: 5px solid rgba(210, 145, 205, 0.4);
    font-size: medium;
    font-weight: bold;
    text-align: center;
    line-height: 1.5;
}

.transparent {
    opacity: 0.2;
}

.bold {
    font-weight: bold;
}

.underline {
    text-decoration: underline;
}

.red {
    font-weight: bold;
    color: red;
}

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(60, 50, 180);
    background-color: transparent;
    text-decoration: underline;
}

a:visited {
    font-weight: bold;
    color: rgb(165, 50, 50);
    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;
}