@font-face {
    font-family: 'Outfit';
    src: url('assets/fonts/outfit.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

:root {

    font-size: clamp(16px, 1.5vw, 18px);
    color: #a3a3a3;

}

* {
    font-weight: 350;
    color: #a3a3a3;

    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    filter: hue-rotate(200deg);
    transition: filter .2s ease;
}

body {
    min-height: 100vh;
    background-color: #d8d8d8;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: 'Outfit', sans-serif;
    height: 90vh;
}

main {
    min-height: fit-content;
    height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    width: 100%;
    max-width: 768px;
    padding: 1rem;
    margin-top: 1rem;

}

h4,
h3,
h2,
p {
    color: inherit;
}

h4 {
    color: #bcbcbc;
    text-transform: uppercase;
    font-size: .8rem;
    letter-spacing: .2em;
    text-wrap: nowrap;
}

h3 {
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: .9rem;
    text-align: center;
}

h2 {
    font-weight: 500;
    font-size: 1.35rem;
    text-align: center;
    margin-top: 1rem;
}

h1 {
    font-weight: 600;
    color: #e4342d;
    text-align: center;
}

p {
    text-align: center;
    font-weight: 340;
}

.logo {
    width: 60%;
    max-width: 256px;
    margin: 2rem 0rem;
    display: flex;
    justify-content: center;
}

.contact {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: .5rem;
    max-width: 100%;
    margin-bottom: 4rem;

    a {
        border: 2px solid #bcbcbc;
        border-radius: 999px;
        padding: .5rem 1.5rem .55rem;
        text-decoration: none;
        letter-spacing: .14em;
        text-transform: uppercase;
        text-wrap: nowrap;
        font-size: .9rem;

        &:hover {
            transform: scale(102%);
            background-color: #bcbcbc;
            color: #d8d8d8;
            transition: all .2s ease-out;
        }
    }
}

footer {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    text-align: center;
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-top: auto;
    margin-bottom: 1rem;
    height: 3vh;
}

.superlegal {
    color: #bcbcbc !important;

}

.datenschutz {
    p {
        margin-bottom: 1rem;
    }
}