
@import url(fonts/garamond/stylesheet.css);
@import url(fonts/tangerine/stylesheet.css);


body {
    margin: 0;
    font-size: 18px;
    font-family: 'EB Garamond';
    line-height: 1.75rem;
    background-color: #d3d3d3;
}

.flex {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}

.top {
    padding: 75px 10vw 75px 10vw;
    background: linear-gradient(to bottom, rgba(211, 148, 11), rgba(253, 251, 219, 1));    
}
.top h1 {
    font-family: 'kingthings_trypewriter_2Rg';
    font-size: 5rem;
    line-height: 5rem;
    color: #d8dd30;
    margin: 1rem 0 1rem 0;
/*    text-shadow: 0.25rem 0.25rem 0.25rem gray;*/
}
.top p {
    font-family: 'TangerineBold';
    font-size: 3rem;
    line-height: 2.75rem;
    margin-top: 1rem;
    margin: 15px;
    color: #a54178;
    font-weight: bold;
}
.text {
    padding: 10px 10vw 20px 10vw;
    background-color: #fdfbdb;
}
.text p,
.footer,
.rechtliches {
    font-size: 1.3rem;
}
.bottom {
    padding: 10px 5vw 75px 5vw;
}
.hide {
    display: none;
}

.karte {    
    width: 30vw;
    background-color: #fff;
    box-shadow: 0 0 15px gray;
    border: 1px solid gray;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fdfbdb;
    padding: 1rem 0;
}
.karte img {
    max-width: 90%;
    max-height: 80%;   
}
.karte.links {
    transform: rotate(-7.5deg);
    z-index: 999;
}
.karte.rechts {
    transform: rotate(7.5deg);
    flex-direction: column;
    text-align: center;
}

.flex.bottom {
    column-gap: 7vw;
}

.bottom img {
    height: fit-content;
    width: fit-content;
    max-width: 100%;
}

.footer {
    background-color: lightgray;
    padding: 1.5rem;
}
.footer ul {
    margin: 0;
    list-style-type: none;
    display: flex;
    flex-direction: row;
    justify-content: center;
    column-gap: 3rem;
}
.footer ul button {
    border: 0;
    background-color: transparent;
    font-family: 'open_sansregular';
    font-size: 1.15rem;
    text-decoration: underline;
}
.footer ul button:hover {
    cursor: pointer;
}

.rechtliches {
    background-color: lightgray;
    padding: 10px 10vw 20px 10vw;
}

[class^="fa"] {
    color: gray;
    margin-right: 1rem;
}


/***********************************************************************************************************************************************************
********************************************************** Media Queries ***********************************************************************************
************************************************************************************************************************************************************/

/*******************************************************************************/
@media all and (max-width: 1799px) {

    .top h1 {
        font-size: 2rem;
        line-height: 2.75rem;
    }
    .top p {
        font-size: 1.75rem;
        line-height: 2.5rem;
        margin: 5px 15px;
    }
}

/*******************************************************************************/
@media all and (min-width: 1500px) and (max-width: 1599px) {

    .top h1 {
        font-size: 1.75rem;
        line-height: 2.5rem;
    }
    .top p {
        font-size: 1.5rem;
        line-height: 2.5rem;
        margin: 0x 15px 10px 15px;
    }
}

/*******************************************************************************/
@media all and (max-width: 1499px) {

    .karte {    
        width: 40vw;
    }

    .top {
        padding: 75px 2.5vw 75px 2.5vw;
    }
    .top p {
        margin: 0 20px 10px 20px;
    }
}

/*******************************************************************************/
@media all and (max-width: 1199px) {

    .top h1 {
        font-size: 1.75rem;
        line-height: 2.5rem;
    }
    .top p {
        font-size: 1.5rem;
        line-height: 2.5rem;
    }
}

/*******************************************************************************/
@media all and (max-width: 1080px) {

    .karte {    
        width: 80vw;
    }

    .karte.links {
        transform: rotate(-5deg);
    }
    .karte.rechts {
        margin-top: 2.5vw;
        transform: rotate(5deg);
    }

    .top h1 {
        font-size: 2.25rem;
        line-height: 3rem;
    }
    .top p {
        font-size: 2rem;
        line-height: 2.75rem;
        margin-top: 1rem;
        margin: 15px;
    }
}

/*******************************************************************************/
@media all and (max-width: 1080px) {

    .top {
        padding: 40px 10vw 50px 10vw;
    }
    .top p {
        font-size: 2rem;
        line-height: 2.75rem;
        margin-top: 1rem;
        margin: 25px 10vw 40px 10vw;
    }
}

/*******************************************************************************/
@media all and (max-width: 799px) {

    .top {
        padding: 40px 10vw 50px 10vw;
    }

    .flex.bottom {
        flex-direction: column;
        align-items: center;
    }
    .bottom img.quadrat {
        margin-top: 5rem;
    }    
}

/*******************************************************************************/
@media all and (max-width: 699px) {

    .top h1 {
        font-size: 2rem;
        line-height: 2.75rem;
    }
    .top p {
        font-size: 1.5rem;
        line-height: 2.25rem;
        margin-top: 0;
    }
}

/*******************************************************************************/
@media all and (max-width: 599px) {

    .top h1 {
        font-size: 1.5rem;
        line-height: 2rem;
    }
    .top p {
        font-size: 1.5rem;
        line-height: 2.25rem;
    }
}

/*******************************************************************************/
@media all and (max-width: 449px) {

    .karte {
        width: 90vw;
    }

    .top {
        padding: 40px 2.5vw 50px 2.5vw;
    }
}

/*******************************************************************************/
@media all and (max-width: 399px) {

    .top h1 {
        font-size: 1.25rem;
        line-height: 1.75rem;
    }
    .top p {
        font-size: 1.25rem;
        line-height: 2rem;
    }
}