@import "../variables.css";
* {
    margin: 0;
    padding: 0;
    font-family: "Montserrat", sans-serif;
    user-select: none;
    text-decoration: none;
}

html {
    font-size: 62.5%;
}

#back-wrapper {
    position: fixed;
    width: 100%;
    display: flex;
    justify-content: center;
    bottom: 15vh;
}

#back {
    background-color: var(--color1);
    width: max-content;
    height: max-content;
    border-radius: 100%;
    justify-content: center;
    color: thistle;
}

#back img {
    width: 3rem;
    height: 3rem;
    object-fit: cover;
    padding: 1rem;
    transform: rotate(90deg);
    filter: invert(100%);
    border-radius: 100%;
}

#back:active {
    animation: pulse 950ms;
}

@keyframes pulse {
    from {
        box-shadow: var(--color1) 0 0 0;
    }
    to {
        box-shadow: rgba(var(--color1o), 0) 0 0 0 5rem;
    }
}

#impressum {
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    background: var(--bg-color1);
    overflow: hidden;
    /* min-height: 500px; */
    color: white;
}

#impressum .text {
    max-width: 90%;
}

#impressum h1 {
    text-align: center;
    font-size: 4rem;
    margin-top: 6vh;
    width: 100%;
}

#impressum .h {
    margin-top: 10vh;
    margin-bottom: 2vh;
    font-size: 2rem;
    width: 100%;
    text-align: center;
    color: white;
}

#impressum p {
    font-size: 2rem;
    width: 100%;
    text-align: center;
    color: white;
}

#impressum a {
    margin-top: 10vh;
    font-size: 1.5rem;
    width: 100%;
    text-align: center;
    color: white;
}

@media (min-width: 640px) {
    #impressum p,
    #impressum a,
    #impressum .h {
        font-size: 3rem;
    }
}

@media (min-width: 768px) {
    #impressum p,
    #impressum a,
    #impressum .h {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    /* #back-wrapper {
        width: fit-content;
        display: block;
        top: 5%;
        left: 5%;
    } */
    #impressum h1 {
        font-size: 4.5rem;
    }
    #impressum p,
    #impressum a,
    #impressum .h {
        font-size: 3.5rem;
    }
}

@media (min-width: 1280px) {
    /* #back-wrapper {
        width: fit-content;
        display: block;
        top: 5%;
        left: 5%;
    } */
    #impressum h1 {
        font-size: 5rem;
    }
    #impressum p,
    #impressum a,
    #impressum .h {
        font-size: 4rem;
    }
}


/* @media (max-height: 300px) {
    #back-wrapper {
        top: 80vh;
    }
} */