@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;1,300;1,500;1,600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;1,300;1,500;1,600&family=Roboto+Condensed:wght@400;700&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: 'Montserrat', sans-serif;
}

img{
    position: fixed;
    height: 100%;
    width: 100%;
    z-index: -1;
    object-fit: cover;
}

#main{
    /* border: 2px solid red; */
    height: 100%;
    width: 100%;
    flex-direction: column;
}

#header{
    display: flex;
    flex-direction: column;
    justify-content: left;
    /* border: 1px solid orange; */
    height: auto;
    margin-bottom: 50px;
    /* border: 2px solid turquoise; */
}

#header h1{
    /* border: 1px solid blue; */
    background-color: transparent;
    font-size: 65px;
    font-weight: 600;
    margin: 20px 0 15px 20px;
    width: fit-content;
    padding: 10px;

}
#header h2{
    /* border: 1px solid green; */
    background-color: transparent;
    font-size: 45px;
    font-weight: 400;
    margin: 0px 0 20px 20px;
    width: fit-content;
    padding: 10px;

}

#together {
    /* border: 4px solid green; */
    display: flex;
    flex-direction: column;
    /* justify-content: space-between; */
    height: 100%;
    margin-bottom: 30px;
}


#containerForButtons{
    /* border: 2px solid darkblue; */
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 330px;
    justify-content: space-around;
    align-items: left;
    float: left;

}

.button{
    border: 2px solid black;
    display: flex;
    justify-content: center;
    color: black;
    background-color: transparent;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
    font-size: 30px;
    width: 150px;
    cursor: pointer;
    padding: 15px 30px 15px 30px;
    border-bottom-left-radius: 15px;
    border-top-right-radius: 15px;
    margin-left: 30px;
}

.button:hover{
    background-color: rgba(0, 0, 0, 0.115);
}

#text{
    display: flex;
    justify-content: center;
    /* border: 2px solid orange; */
    text-align: center;
    width: 100%;
    margin-top: 50px;

}

#text #paragraph{
    width: 800px;
    /* border: 2px solid purple; */
    padding: 10px;
    margin-top: 0px;
    background-color: rgba(255, 255, 255, 0.100);
}

.quotation {
    font-weight: bold;
    font-size: 60px;
}

#quote {
    font-size: 35px;
    font-weight: 800;
    font-style: italic;
    line-height:45px;
}

#pfeil{
    position: absolute;
    top: 30px;
    left: 30px;
    text-decoration: none;
    font-size: 50px;
    color: rgb(240, 240, 240);
}



@media (max-width: 1200px) and (min-width: 840px) {
    #header{
        margin-bottom: 10px;
    }
    #header h1{
        font-size: 50px;
        margin-bottom: 0px;
        padding-bottom: 0px;
    }
    #header h2{
        font-size: 30px;
    }
    .button{
        font-size: 25px;
        width: 130px;
    }
    #text{
        margin-top: 70px;
    }
    #text #paragraph{
    }
    .quotation {
        font-size: 55px;
    }
    #quote {
        font-size: 30px;
    }
}

 @media (max-width: 840px) {
    #header{
        margin-bottom: 10px;

    }
    #header h1{
        font-size: 35px;
        margin-bottom: 0px;
        padding-bottom: 10px;
    }
    #header h2{
        font-size: 25px;
        padding-top: 0px;
    }
    #containerForButtons{
        height: 250px;
        width: 100%;
    }
    .button{
        font-size: 16px;
        width: 90px;
    }
    #text{
    }
    #text #paragraph{
        margin: 0 25px 0 25px;
    }
    .quotation {
        font-size: 50px;
    }
    #quote {
        font-size: 25px;
        line-height: 30px;
    }
 }



