.footer {
    color: lightgray;
    font-size: 0.9rem;
    min-height: 200px;
    width: 100%;
    background-color: rgb(20, 27, 40);
    padding-bottom: 2em;
}

.footer > * {
    text-align: center;
}

.footer > div {
    padding: 1em;
}

.footer-main-content {
    display: flex;
    justify-content: center;
}

.logo-container {
    display: flex;
    font-size: 2em;
    align-items: end;
    padding: 1em 3em;
}

.footer-logo {
    height: 120px;
}

.footer-website-name {
    margin-bottom: 0.5em;
    position: relative;
}

.footer-version {
    position: absolute;
    font-size: 0.8rem;
    bottom: -20px;
    right: 0;
}

.footer-contact {
    color: lightgray;
    border: none;
    text-decoration: none;
}

.footer-contact:hover {
    color: white;
}

.footer-list > * {
    padding: 0 10px;
    border-left: 1px solid;
}

.footer-list > *:first-child {
    border: none;
}

@media screen and (max-width: 767px) {
    .logo-container {
        padding: 1em;
    }   
}