html, body {
    height: 100%;
    margin: 0;
}
.container {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
}

.container header {
    height: 0;
    flex-grow: 0;
    width: 100%;
    align-self: flex-start;
    background-color: #eee;


    display: flex;
    flex-direction: row;
}

header .title {
    font-size: 40pt; 
}

.container main {
    width: 100%;
    background-color: rgb(146, 207, 255);
    flex-grow: 1;
    background-image: url("../DCIC_splash.png");
    background-size: cover;
    background-position: left;

    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-content: center;
}

main .maincontent {
    margin: auto;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid #111;
}

main .title {
    font-size: 40pt;
    min-width: 6em;
    max-width: 12em;
}

main .title a {
    color: rgb(25, 100, 110);
    text-decoration: none;
    font-weight: 500;
    font-family: sans-serif;
}

main .authors {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    justify-content: space-around;
    padding-top: 1em;
}

main .authors a {
    color: #111;
    text-decoration: none;
}

main .authors a:hover {
    text-decoration: underline;
}

main .version {
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding-top: 3em;
}

main .version a {
    color: #111;
    text-decoration: none;
}

main .version a:hover {
    text-decoration: underline;
}

main .copyright a {
    color: #111;
    text-decoration: none;
}

.container footer {
    width: 100%;
    flex-grow: 0;
    height: 2rem;
    align-self: flex-end;
    background-color: #111;
    color: #eee;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
}

footer a {
    color: #eee;
    text-decoration: none;
    padding-right: 1rem;
}

