html {
    margin: 0;
}

body {
    min-height: 100vh;
    margin: 0;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    display: flex;
    flex-direction: column;
    background-color: #040404;
    color: #F0F0F0;
}

.navigation {
    width: 100%;
    height: 78px;
    top: 0;
    margin: 0;
    padding: 0;
    position: fixed;

    background-color: #040404;
    z-index: 9999;

    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.navigation a {
    text-decoration: none;
}

.navigation-group {
    display: flex;
    align-items: center;
}

.navigation-title {
    font-size: 14px;
    font-weight: 500;
    padding-left: 12px;
}
.navigation-title a {
    color: #F0F0F0;
}

.navigation-logo {
    padding-left: 24px;
}

.navigation-download {
    margin-right: 24px;
    font-size: 12px;
    font-weight: 700;
    padding: 8px;
    padding-left: 16px;
    padding-right: 16px;
    background: #F0F0F0;
    border-radius: 16px;
}
.navigation-download a {
    color: #040404;
}

.container {
    margin-top: 78px;
    min-height: calc(100vh - 78px - 78px);

    background-color: #040404;
    color: #F0F0F0;
}

/* footer */

.footer {
    margin-top: auto;
    background-color: #040404;
    color: #F0F0F0;
    height: 78px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
.footer p {
    margin: 24px;
    font-size: 14px;
}
