html {
    background-color: #531;
    background-image: url(./img/back.gif);
    color: #531;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    text-transform: lowercase;
    font-size: 13pt;
}
body {
    max-width: 720px;
    margin: auto;
    background-color: #ff9;
    border: solid #111;
    border-width: 0px 1px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
header {
    width: 100%;
    aspect-ratio: 4 / 3;
    background-size: contain;
    background-image: url(./img/top.png);
}
nav {
    border: dashed #963;
    border-width: 1px 0px;
}
nav ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    justify-content: space-around;
    flex-wrap: wrap;
}
nav ul li { 
    margin: 0;
    padding: 0;
    flex-grow: 1;
}
nav ul li a {
    display: block;
    padding: 10px;
    font-size: 90%;
    color: #fff;
    background-color: #963;
    text-decoration: none;
    background-clip: padding-box;
}
nav ul li:not(li:last-of-type) a {
    border-right: 1px dashed #963;
}
nav ul li a:hover {
    color: #531;
    background-color: #ff9;
}
main {
    flex-grow: 1;
    padding: 5px;
}
footer {
    border-top: 1px dashed #963;
}
footer p {
    padding: 3px;
    text-align: center;
    font-size: 80%;
}
b, strong, i, em, u {
    font-size: 110%;
    color: #111;
    font-family: Georgia, 'Times New Roman', Times, serif;
}
h1, h2 {
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}
h1 {
    text-align: center;
    margin: 0;
    text-transform: uppercase;
}
.subtitle {
    text-align: center;
    text-transform: uppercase;
    color: #963;
    font-weight: bold;
    font-family: 'Courier New', Courier, monospace;
    padding: 0;
    margin: 0;
}
h2 {
    border-bottom: 1px dashed #531;
    margin: 10px;
}
p {
    text-align: justify;
    padding: 0 10px;
}
a {
    color: #963;
    text-decoration: dashed underline;
    font-family: Georgia, 'Times New Roman', Times, serif;
}
.center {
    margin: auto;
    display: block;
    text-align: center;
}
img.center {
    border: 1px solid #531;
    padding: 5px;
    background-color: #fff;
}
.right {
    float: right;
    border: 1px solid #111;
    margin: 5px;
}

.space {
    margin: 5px;
    padding: 15px;
    background-color: #c96;
    width: fit-content;
    margin: auto;
    border: 1px dashed #963;
    border-radius: 5px;
    background-clip: padding-box;
    text-align: center;
}
.yt {
    border: 1px dashed #531;
    border-radius: 10px;
    width: 400px;
    height: 300px;
    overflow: hidden;
}
.space p {
    text-align: center;
    margin: 0;
}
.space i {
    color: #fff;
}
.members {
    display: flex;
    flex-wrap: wrap;
}
.members div {
    width: 33%;
    min-width: 200px;
}
.members div:not(:last-of-type) {
    border-right: 1px dashed #963;
}
@media (max-width: 720px) {
  .members {
    flex-direction: column;
  }
  .members div {
    width: 100%;
    min-width: auto;
    border-right: none;
  }
  .members div:last-of-type {
    border-bottom: none;
  }
}
.members p {
    font-size: 80%;
}