html {
    height: 100%;
}

body {
    background: #000000;
    height: 95%;
}

p {
    font-family: JetBrains Mono, Verdana, sans-serif;
    font-size: 14px;
    color: white;
    margin-top: 18px;
}

h2 {
    font-family: JetBrains Mono, Verdana, sans-serif;
    font-size: 20px;
    color: white;
    margin-top: 40px;
    margin-bottom: 6px;
}

ul {
    font-family: JetBrains Mono, Verdana, sans-serif;
    font-size: 14px;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    list-style-type: none;
}

li {
    margin-top: 8px;
}

li:nth-child(odd){
    margin-left: -220px;
}

li:nth-child(even){
    margin-left: 40px;
}

a {
    font-family: JetBrains Mono, Verdana, sans-serif;
    color: deeppink;
}

a:visited {
    color: greenyellow;
}

a.white-link {
    color: white;
}

a.white-link:visited {
    color: white;
}

a.tooltip {}

a.tooltip:hover {
    position: relative;
}
a.tooltip span {
    display: none;
}
a.tooltip:hover span {
    color: black;
    font-size: x-small;
    border-radius: 4px;
    padding: 5px 12px 5px 5px;
    display: block;
    z-index: 10;
    background: #e3e3e3;
    left: 0px;
    margin: 15px;
    width: max-content;
    position: absolute;
    top: 15px;
    text-decoration: none;
}

.flex-container {
    height: 90%;
    display: flex;
    padding: 12px;
    justify-content: center;
    align-items: center;
    column-gap: 96px;
}

.left-box {
    min-height: 470px;
    width: 38%;
    padding: 24px;
}

.right-box {
    min-height: 470px;
    padding: 24px;
}

.all-centered {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

footer {
    width: 70%;
    height: 40pt;
    position: relative;
    left: 15%;
    display: flex;
    justify-content: space-evenly;
    border-top: 1pt dotted white;
}

address {
    font-family: JetBrains Mono, Verdana, sans-serif;
    font-size: 12px;
    color: white;
    margin-top: auto;
    margin-bottom: auto;
}

button {
    font-family: Verdana, sans-serif;
    font-size: 14px;
    background: black;
    border: solid 12px black;
    color: white;
}

button:hover {
    cursor: pointer;
}

#left-arrow:before {
    content: '\279C';
    color: deeppink;
    font-size: 12pt;
    display: inline-block;
    transform: rotate(180deg);
    position: relative;
    top: 3px;
    right: 3px;
}

#pentagon {
    font-family: Verdana, sans-serif;
    font-size: 20px;
    color: deepskyblue;
    margin: auto;
}



