body {
    display: flex;
    justify-content: center;
}
.container {
    height: 100vh;
    width: 100vw;
    min-width: 1280px;
}
header {
    height: 10vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0px 1px 5px grey;
}
header .title {
    font-size: 2.0em;
    flex: 1;
    text-align: center;
}
header .topMenu {
    flex: none;
}
header .spacer {
    flex: 1;
}
header .topMenu ul {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
    list-style: none;
}
header .topMenu ul li {
    margin-right: 40px;
    margin-left: 40px;
    font-size: 1em;
}
footer {
    background-color: #1E293B;
    height: 20vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-container {
    height: 20vh;
    width: 1280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.footer-container > div {
    margin-top: 15px;
    margin-bottom: 15px;
}

.footer-container > div:first-child > p {
    font-size: 0.9em;
    color: #e5e7eb;
}

.footer-container > div > p, .github {
    font-size: 0.9em;
    color: #9ca3af;
}

.footer-container > div:last-child > p {
    line-height: 20px;
}