#splash-screen {
    display: flex;
    flex-direction: column;

    justify-content: center;
    align-items: center;
}

#splash-screen > h1 {
    font-size: 5rem;
}

.vl {
    height: calc(100vh - var(--nav-height));
    width: 0;

    margin: 0;
    padding: 0;

    position: absolute;
    top: 0;


    border-left: solid 4px;
}

#vl-1 {
    border-color: var(--accent);
    right: 40px;
}

#vl-2 {
    border-color: var(--text-color);
    right: 70px;
}

#vl-3 {
    border-color: var(--accent);
    right: 100px;
}

section {
    display: flex;
    flex-direction: column;

    justify-content: space-evenly;
}

article {
    display: flex;
    flex-direction: column;

    justify-content: center;
}

article > * {
    margin: 10px;
}

article > ul {
    display: flex;
    flex-direction: column;

    justify-content: space-evenly;
    align-items: left;
}

article > ul > li {
    margin: 10px;
}

#split-wrapper {
    height: calc(100vh - var(--nav-height));
    width: 100%;

    display: flex;
    flex-direction: row;
}

div {
    height: 100%;
    width: 50%;

    display: flex;
    flex-direction: column;

    justify-content: center;
    align-items: center;
}

div > p {
    margin: 15px;
}

div > img {
    height: 100%;
    align-self: flex-end;
}