body {
    background-color: black;
    align-items: center;
}

.container-i {
    height: 100%;
    min-height: 100vmin;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr min-content;
}

.background {
    grid-area: 1 / 1;
    justify-self: center;
    display: grid;
    grid-template-rows: 1fr;
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 768px;
}

.bio {
    margin-left: 50px;
    margin-right: 50px;
    font-style: italic:
}

.content {
    grid-area: 1 / 1;
    z-index: 2;
    display: flex;
    flex-direction: column;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    justify-self: center;
    margin-left: 100px;
    width: 600px;
}


.contents {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-items: center;
    z-index: 5;
    margin-bottom: 200px;
    margin-left: 50px;
}

.content .contents .pieces {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.content .contents .pieces .pieces-l{
    border-top: 0.5px solid #00e58e;
    padding: 16px 0px;
    flex-direction: column;
}

.content .contents .pieces .pieces-r{
    border-top: 0.5px solid #00e58e;
    padding: 16px 0px;
    flex-direction: column;
}

.page-text {
    grid-area: 1 / 1;
    display: flex;
    flex-direction: column;
    margin-top: 280px;
    padding-left: 1rem;
    color: #00e58e;
}

.content .top-header {
    display: grid;
    flex-direction: column;
    justify-items: center;
}

.content .contents .CC {
    display: flex;
    flex-direction: column;
    align-self: center;
    width: 600px;
}

.content .contents .CC-l-r {
    min-width: 100%;
    display: flex;
    flex-direction: row;
    -webkit-box-pack: center;
    justify-content: center;
}

.content .CC .left {
    display: flex;
    flex-flow: wrap;
    flex: 2.25 1 0%;
    justify-content: space-evenly;
    border-top: 0.5px solid #00e58e;
    border-bottom: 0.5px solid #00e58e;
}

.content .CC .right {
    display: flex;
    flex-flow: wrap;
    flex: 1 1 0%;
    justify-content: space-evenly;
    border-top: 0.5px solid #00e58e;
    border-left: 0.5px solid #00e58e;
    border-bottom: 0.5px solid #00e58e;


}

.link {
    color: #00e58e;
    text-decoration: none;
    padding: 10px;
    font-size: large;
    text-transform: uppercase;
    
}

.link-here {
    color: black;
    text-decoration: none;
    padding: 10px;
    font-size: large;
    text-transform: uppercase;
    background-color: #627047;
}

.button {
    color: #00e58e;
    text-decoration: none;
    padding: 10px;
    font-size: large;
    text-transform: uppercase;
    background-color: black;
    border: 0.5px solid #00e58e;
    margin-bottom: 5px;
    margin-left: 10px;
    width: 100px;
    
}

a :hover {
    text-transform: lowercase;
}

.title {
    display: grid;
    flex-direction: column;
    justify-items: center;
    color:white;
}

.subtitle {
    display: grid;
    flex-direction: column;
    justify-items: center;
    color: white;
}

h1 {
    font-size: xx-large;
    color: white;
}

h2 {
    font-size: x-large;
    color: white;
}

h3 {
    font-size: medium;
    color: white;
    margin-left: 50px;
    margin-right: 50px;
    line-height: 2;
}

h4 {
    color: #3B4239;
    font-style: italic;
    font-size: large;
}

h5 {
    color: white;
    flex: row;
}

h6 {
    color: #00e58e;
    font-size: small;
    padding-left: 500px;
}

text {
    color: #A0C464;
    margin: 1px;
    text-transform: uppercase;
    font-family: 'Bruno Ace SC';
    font-size: 15px;
}


.collapsible {
    background-color: #627047;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    border: #00e58e;
}

.active, .collapsible:hover {
  background-color: #67663c;
}

.collapsible:after {
    content: '\21E8';
    font-size: 13px;
    color: white;
    float: right;
    margin-left: 5px;
}

.active:after {
    content: "\21E9";
    color: white;
}

.content-in {
    padding: 0 18px;
    background-color: #627047;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

.example {
    width: 100%;
}