html, body {
    margin: 0;
    padding: 0;
    height: 100%;
}

.lander {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

header {
    background: black;
    min-height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    width: 100%;
    flex: 0 0 auto;
}

header img {
    height: 65px;
}

.content {
    background: white url('./img/mountains.png') center bottom;
    background-size: cover;
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.text {
    background: rgba(255,255,255,0.8);
    padding: 2rem;
    text-align: center;
}

h1, p {
    font-family: Outfit;
}
