:root {
    --headlines:clamp(2rem, 0.4rem + 3.4vw, 3rem);
}

/* ----------der body----------------------------------- */

body {
    background-image: url(../img/rievkooche_heller.png);
    background-size:cover;
    background-repeat: no-repeat;
    max-width: 800px;
    margin: auto;
    /* border: solid 1px rgb(180, 17, 44); */
}



/* ------------------------die headlines------------------------- */
h1 {
    font-size: var(--headlines);
    font-family: 'Veneer Regular';
    color:hsl(0, 0%, 100%);
    letter-spacing: 0.06em;
    font-weight:400;
    text-align: center;
}

h2 {
    font-size: var(--headlines);
    font-family: 'Veneer Regular';
    letter-spacing: 0.06em;
    font-weight: 500;
    color:hsla(0, 0%, 0%, 0.799);
}

h3 {
    /* font-size: var(--headlines); */
    color:hsl(0, 0%, 0%);
    font-size:x-large;
    font-family: 'Veneer Regular';
    font-weight:500;
    text-align: center;
}

/* ------------------und paragraph--------------- */
p {
    font-family: 'Veneer Regular';
    font-size: var(--headlines);
}


/* ---------allgemein Bilder------------------- */
img {
    max-width: 100%;
}



/* .zweiter {
    background-color: rgba(255, 255, 255, 0.473);
    border-radius: 20px;
    max-width: 90px;
} */

/* ---------------die social media buttons--------------------------- */

.instaWhite {
    /* background-image: url(../img/Insta_Icon.png); */
    background-color: hsla(0, 0%, 100%, 0.842);
    background-size: cover;
    max-width: 90px;
    max-height: 90px;
    border-radius: 30px;
    transition: all 0.5s;
}

.instaRed {
    /* background-image: url(../img/Insta_Icon_weiss.png); */
    background-color: rgb(205, 23, 25);
    background-size: cover;
    max-width: 90px;
    max-height: 90px;
    border-radius: 30px;
    position: absolute;
    z-index: -1;
    opacity: 0;
}

.insta {
    position: relative;
}

.insta:hover .instaRed {
    z-index: 10;
    opacity: 1;
}

.insta:hover .instaWhite {
    opacity: 0.08;
}
/* ---------------------------------------------------------------------------- */

.facebookWhite {
    /* background-image: url(../img/Insta_Icon.png); */
    background-color: hsla(0, 0%, 100%, 0.842);
    background-size: cover;
    max-width: 90px;
    max-height: 90px;
    border-radius: 30px;
    transition: all 0.5s;
}

.facebookRed {
    /* background-image: url(../img/Insta_Icon_weiss.png); */
    background-color: rgb(205, 23, 25);
    background-size: cover;
    max-width: 90px;
    max-height: 90px;
    border-radius: 30px;
    position: absolute;
    z-index: -1;
    opacity: 0;
}
.facebook {
    position: relative;
}

.facebook:hover .facebookRed {
    z-index: 10;
    opacity: 1;
}

.facebook:hover .facebookWhite {
    opacity: 0.08;
}

/* ---------------die flex-wrapper für die Social Icons------------------- */
.wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 800px;
    /* border: solid 1px black; */
    justify-content:center;
    align-items: center;
    margin-top: 80px;
}

.bild1 {
    max-width: 400px;
}

.wrapperrot {
    /* border: solid 1px black; */
    background-color: rgb(205, 23, 25);
    max-width: 800px;
    height: auto;
}

.kontakt {
    text-align: center;
    padding-top: 0px;
}


.wrapper2 {
    display: flex;
    flex-direction: column;
    gap: 3px;
    align-items: center;
    margin-bottom: 60px;
}

a.social {
    text-decoration: none;
    color: black;
}

  /*--------media Queries-----------------------------------------*/


@media(min-width: 280px){


    .wrapper2 {
        flex-direction: row;
        justify-content:center;
        gap: 10px;
        /* border: solid black 1px; */
        max-width: 800px;
        /* margin-top: 10px; */
    } 
}








