body {
    background:  rgba(120, 71, 56, 0.500);
}

section{
    max-width: 500px;
    width: 90%;
    margin: 0 auto;
    margin-top: 10px;
    margin-bottom: 10px;

    border: solid 5px;
    border-color: rgba(255, 255, 255, 0.5);
    border-radius: 5px;
    
    padding: 10px;
    
    text-align: center;
}    

.subsection{
    max-width: 500px;
    width:90%;
    margin: 0 auto;
    margin-top: 10px;
    margin-bottom: 10px;
    
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.4);
    padding: 10px;
    border-bottom: solid 3px rgba(0, 0, 0, 0.6);
    text-align: center;
}

table{
    max-width: 500px;
    width: 90%;
    margin: 0 auto;
    font-size: medium;
}

th, td {
    background-color: rgba(255,255,255,0.4);
    padding: 2px 2px;
    text-align: center;
    font-size: small;
    font-weight: bold;
    padding: 6px;
    border-bottom: solid 3px rgba(0, 0, 0, 0.6);
}

dl{
    max-width: 500px;
    width: 90%;
    margin: 0 auto;
    text-align: center;
    
}

dt, dd{
    margin: 0 auto;
    line-height: 1.5;
    text-align: center;
    
}

footer{
    max-width: 500px;
    width: 90%;

    margin: 0 auto;
    margin-top: 10px;
    margin-bottom: 10px;

    border: solid 5px;
    border-color: rgba(255, 255, 255, 0.3);
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    padding: 5px;
    text-align: center;
}

h1{
    max-width: 500px;
    width: 90%;
    margin: 10px auto;
    border: solid 5px;
    border-color: rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    border-bottom: solid 6px rgba(0, 0, 0, 0.6);
    background-color: rgba(255,255,255,0.4);
    font-size: x-large;
    display: block; 
    text-align: center;    
}

h2{
    max-width: 500px;
    width: 80%;
    margin: 10px auto;
    font-size: larger;
    border-radius: 5px;
    border-bottom: solid 3px rgba(0, 0, 0, 0.6);
    background-color: rgba(255,255,255,0.4);
    display: block; 
    text-align: center;
}

h3{
    max-width: 500px;
    width: 70%;
    margin: 10px auto;
    font-size: medium;
    border-radius: 5px;
    border-bottom: solid 3px rgba(0, 0, 0, 0.6);
    background-color: rgba(255,255,255,0.4);
    display: block; 
    text-align: center;
}

img{
    border: 3px solid rgba(255,255,255,0.4);
    max-width: 90%;
    height: auto;
    margin: auto;
    display: block;
}

video{
    border: 3px solid rgba(255,255,255,0.4);
    max-width: 90%;
    height: auto;
    margin: auto;
    display: block;
}

p {
    font-size: medium;
    word-wrap: break-word;
    white-space: normal; 
    line-height: 1.5;
    text-align: left;
}

b {
    font-size: larger;
    word-wrap: break-word;
    white-space: normal; 
    line-height: 2.0;
    text-align: center;
    display: block;
}

.transparent{
    opacity: 0.2;
}

.bold{
    font-weight: bold;
}

.underline{
    text-decoration: underline;
}

.red{
    font-weight: bold;
    color: red;
}

a{
    font-weight: bold;
    color: rgb(70, 40, 200);
    background-color: transparent;
    text-decoration:underline;
}

a:visited{
    font-weight: bold;
    color: rgb(155, 40, 70);
    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;
}