@import "css/grid.css";

:root {
    --primary: #090a64;
    --secondary: #61a75c;
}

*{
    box-sizing: border-box;
}

body, html {
    background-color: var(--secondary);
    font-family: 'Open Sans',helvetica;
    line-height: 1.4;
    margin: 0;
    padding: 0;
}
h1{
    color: var(--primary);
    font-size: 5em;
    margin:0;
    padding:0;
    text-align: center;
}

a {
    color: var(--primary);
    transition: all 300ms;
}

main {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 90vh;
    text-align: center;
}

.link {
    border-radius: 15px;
    background-color: #fff;
    color: var(--secondary);
    text-decoration: none;
    max-width: 500px;
    margin: 10px 0;
    padding: 10px;
    text-align: center;
    width: 100%;
}

.link:hover {
    background-color: var(--primary);
    color: #fff;
    font-weight: bold;
}

a:hover {
    opacity: 0.7;
}

h3 {
    text-align: center;
}


.container {
    position: relative;
}


.imprint {
    display: flex;
    color: #fff;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 35px);
    text-align: center;
}
.imprint > div {
    max-width: 600px;
}

img {
    max-width: 100%;
}

#menu {
    position: fixed;
    display: flex;
    margin: 20px auto;
    text-align: center;
    /*justify-content: center;*/
    left: 0;
    right: 0;
    z-index: 10000;
    padding: 10px;
}


footer {
    background-color: var(--primary);
    bottom: 0;
    font-size: 0.8rem;
    align-items: center;
    display: flex;
    justify-content: flex-end;
    height: 35px;
    position:fixed;
    width: 100%;
}

footer nav {
    align-items: center;
    display: flex;
}

footer nav a {
    color: #fff;
    padding: 0 20px;
    text-decoration: none;
}


@media screen and (max-width: 767px){

    .row {
        flex-wrap: wrap;
    }

    [class ^='col-'] {
        width: 100%;
    }

    h1 {
        font-size: 3rem;
    }

    footer {
        justify-content: center;
    }

}