body {
    font-family: "Mulish", sans-serif;
    font-optical-sizing: auto;
    font-weight: normal;
    font-style: normal;
    font-size: 16px;
    color: #FFFFFF;
    margin: 0;
}
.landing-page {
    height: 100vh;
    display: flex;
    flex-direction: column;
}
.landing-content {
    background-image: url("assets/landing-background.png");
    flex-grow: 1;
    display: flex;
    align-items: flex-end;
    position: relative;
}
.landing-color-filter {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #1F1F1F;
    opacity: 70%;
}
.landing-logo {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-left: 4em;
    margin-bottom: 8em;
    z-index: 1;
}
.landing-title {
    font-size: 6em;
}
.landing-subtitle {
    font-size: 1.3em;
}
.landing-divider {
    height: 200px;
    width: 2px;
    background-color: #FFFFFF;
    margin-right: 80px;
    margin-left: 80px;
}

@media only screen and (max-device-width: 800px) {
    .landing-logo {
        flex-direction: column;
        margin-left: auto;
        margin-right: auto;
    }
    .landing-divider {
        display: none;
    }
}
.landing-footer {
    display: flex;
    gap: 0 3em;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    height: 80px;
    background-color: #1F1F1F;
}
.landing-footer a {
    color: #FFFFFF;
    text-decoration: none;
}

.landing-grey-text {
    color: #A7A7A7;
}