@font-face {
    font-family: 'Montserrat300';
    src: url("../fonts/Montserrat-Light.woff2");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat400';
    src: url("../fonts/Montserrat-Regular.woff2");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat500';
    src: url("../fonts/Montserrat-Medium.woff2");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Montserrat300';
    font-size: 14px;
    background-color: #2C333E;
    color: white;
    display: flex;
    flex-direction: column;
}

h2 {
    font-family: 'Montserrat300';
    font-size: 1.5rem;
    margin: 2rem 0;
}

a {
    color: white;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

ul {
    padding: 10px 0 10px 15px;
}

strong {
    font-family: 'Montserrat400';;
    display: block;
}

.container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
}

.container-impressum,
.container-datenschutz {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    text-align: left;
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.logo {
    width: 500px;
    height: auto;
    margin-bottom: 2rem;
}

.container-impressum .logo,
.container-datenschutz .logo{
    width: 200px;
}

.footer {
    text-align: center;
    padding: 2rem 1rem 4rem;
    font-size: 0.75rem;
    color: white;
    opacity: 0.8;
    font-family: 'Montserrat300';
}

.footer br {
    display: none;
}

.footer span {
   margin: 0 10px;
}

.footer a {
    color: white;
    text-decoration: none;
    font-size: 0.75rem;
}

.footer a:hover {
    text-decoration: underline;
}

@media (max-width: 500px) {
    .logo {
        width: 300px;
        height: auto;
        margin-bottom: 2rem;
    }

    h2 {
        font-size: 1.2rem;
        margin: 1rem 0;
    }

    .footer {
        line-height: 18px;
    }

    .footer br {
        display: inline-block;
    }

    .footer br + span {
        display: none;
    }
}