main {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
    justify-content: center;
	font-family: Arial, Helvetica, sans-serif;
    padding: 20px;
}
main h1 {
    font-size: 40px;
}
main h2 {
    font-size: 24px;
}
main p {
    font-size: 18px;
}
.top {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-weight: bold;
    border: 3px double var(--TEAL);
    border-radius: 8px;
    padding: 20px;
    margin: 0 auto;
}

.top h1 {
    color: var(--CRIMSON);
    text-decoration: underline;
}
.top h2 {
    color:  var(--CRIMSON);
    margin-bottom: 10px;
}
.top p {
    color:  var(--TEAL);
}

.documentation{
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 30px;
}
.documentation h1{
    color: var(--CRIMSON);
    font-size: 24px;
    margin-bottom: 5px;
}
.documentation h2{
    color: var(--CRIMSON);
    font-size: 18px;
}
.section:first-of-type {
    margin-top: 0;
}
.section {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    border: 3px double var(--TEAL);
    padding: 20px;
    flex: 1;
    margin-top: 20px;
}
.section h2 {
    margin-bottom: 5px;
}
.section a {
    font-size: 24px;
    margin-bottom: 5px;
    font-weight: bold;
}
.section p {
    font-size: 16px;
    color: var(--TEAL);
    margin-top: 5px;
}
.section p a {
    font-size: 16px;
    font-weight: bold;

}
.section p > span{
    color: var(--CRIMSON);
    font-weight: bold;
}
.split {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
.split > .section {
    margin: 0px;
    min-width: 200px;
}
.split > .section a{
    font-size: 16px;
    margin-top: 10px;
    font-weight: bold;
}
.hr {
    width: 100%;
    height: 10px;
    border-top: 1px solid var(--TEAL);
    line-height: 80%;
    margin-top: 10px; 
}