* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: #000;
    background-color: #333;
    /* overflow: auto; */
}

.landing {
    position: relative;
    background-image: url('../images/background-image.jpeg');
    background-size: cover;
    background-position: center;
    height: 100vh;

}

.landing-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 90%;
    /* background: rgba(0, 0, 0, 0.1); */
    text-align: center;
    padding-top: 40px;
    padding-bottom: 40px;
    overflow-y: scroll;
}

/* .landing-inner a:first-child {
    margin-top: 100px;
} */


.landing h1 {
    font-size: 50px;
}

.landing-inner p {
    font-size: 20px;
    padding-top: 20px;
}

.countdown {
    font-size: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.countdown div {
    padding: 20px;
    border: 1px solid #000;
    border-radius: 10px;
    margin: 5px;
    opacity: 0.7;
    background: #000;
    color: #fff;
}

.countdown div:first-child {
    background: #94C123;
}

.countdown span {
    display: block;
    font-size: 25px;
    color: #fff;
}

p a:link {
    text-decoration: none;
    color: #94C123;
}

p a:hover {
    color: #648315;
    transform: scale(1.05);
}

/* .impressum p {
    display: inline-block;
    text-align: left;
} */

.left {
    display: inline-block;
    text-align: left;
    padding: 0 20px 0 20px;
}

nav {
    position: fixed;
    width: 300px;
    height: 50px;
    left: 50%;
    transform: translate(-50%, 0);
    bottom: 0;
    background: #94C123;
    border-radius: 10px 10px 0 0;
    text-align: center;
}

nav ul {
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    justify-items: center;
}

nav li {
    flex-grow: 1;
}

nav li a {
    text-align: center;
    text-decoration: none;
    color: #fff;
}

nav li a:hover {
    color: #648315;
    transform: scale(1.05);
}

@media(max-width: 650px) {
    .landing img {
        width: 30%;
    }

    .landing-inner {
        width: 100%;
        left: 0;
    }

    .landing h1 {
        font-size: 40px;
    }

    .countdown {
        font-size: 30px;
        flex-direction: column;
    }

    .countdown div {
        display: none;
    }

    .countdown div:first-child {
        display: block;
        width: 80%;
        padding: 10px;
    }

    nav li {
        flex-direction: column;
    }
}

@media(max-height: 600px) {
    img {
        width: 20%;
    }

    /* p {
        display: none;
    } */
}

@media (max-height: 400px) {
    /* h1 {
        display: none;
    } */
}