@import url("styles.css");

section.landing-wrapper {
    position: relative;
    height: 50vh;
    width: 100vw;
    background: black;
}

article.logo-and-name-wrapper {
    position: absolute;
    bottom: -120px;
    left: 0;
    right: 0;
    width: 210px;
    height: 170px;
    margin: 0 auto;
    background: green;
    padding: 2em 1em;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 2px solid white;
}
img.main-logo {
    width: 100px;
    margin-top: 3em;
    position: absolute;
    bottom: -40px;
}

h1.page-title-headline {
    font-family: Raleway;
    font-weight: 200;
    text-align: center;
    color: white;
    font-size: 2.2rem;
}
h1.page-title-headline > span {
    font-size: 1.2rem;
}

nav.landing-desktop-navigation {
    display: none;
}

a.navigation-item {
    color: white;
    font-family: Raleway;
    font-weight: 200;
    font-size: 1.8em;
    line-height: 2.1rem;
}

button.navigation-item:hover {
    cursor: pointer;
}

.information-banner {
    padding: 10px 0px;
    text-align: center;
    background: green;
    color: var(--white);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 20;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
    margin: 0;
}

@media screen and (min-width: 880px) {
    section.landing-wrapper {
        height: 100vh;
    }

    article.logo-and-name-wrapper {
        top: 0;
        left: 5%;
        padding: 2em;
        width: 240px;
        right: unset;
        border: none;
        height: 450px;
    }

    img.main-logo {
        position: relative;
        bottom: unset;
        width: 150px;
        margin-top: 2em;
    }

    h1.page-title-headline {
        margin-top: auto;
        font-size: 3.1rem;
    }
    h1.page-title-headline > span {
        font-size: 1.6rem;
    }

    nav.landing-desktop-navigation {
        display: flex;
        flex-direction: column;
        align-items: center;
        position: absolute;
        left: 0;
        right: 0;
        bottom: 50px;
        z-index: 8;
        width: 100%;
    }
}
