/* @import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600;1,700;1,800;1,900&display=swap'); */
:root{
    --main-brand-color: #07a35a;
    --primary-color: #3c3d3d;
    --secondary-color: #0a663b;
    --light-secondary-color: #197d4e;
    --text-color: #fafcfb;
    --secondary-text-color: #bebebe;

}

body{
    min-height: 100vh;
    background-color: var(--primary-color);
    font-family: 'Playfair';
    font-size: 20px;
    color: var(--text-color);
}

h1{
    font-size: 50px;
    line-height: 115%;
    text-align: center;
}

h2{
    font-size: 50px;
    text-align: center;
    padding-bottom: 50px;
}

h3{
    font-size: 38px;
    text-align: center;
}
h4{
    font-size: 38px;
    text-align: center;
}

@media(max-width: 800px){
    h1{
        font-size: 8vw; /*vorher 7vw*/
        text-align: center;
    }
    h2{
        font-size: 8vw;
        padding-bottom: 5vw;
    }
    h3{
        font-size: 6vw;
        margin-bottom: 3vw;
    }
    h4{
        font-size: 4vw;
    }
    body{
        font-size: 16px;
    }
}

.back-button {
    display: inline-flex;
    align-items: center;
    gap: 8px; /* Abstand zwischen Pfeil und Text */
    padding: 10px 20px;
    background-color: var(--main-brand-color); /* Deine Hauptfarbe */
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.back-button:hover {
    background-color: var(--hover-color); /* Farbe beim Hovern */
}

.material-symbols-rounded {
    font-size: 20px; /* Größe des Icons */
}