:root{
    --header-height:70px;
    --main-color:#2f5d50;
    --accent-color:#6fa8a8;
    --light-accent:#8fd6d6;
    --text-color:#2f3e3e;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins', sans-serif;

}

body{

    font-family:'Poppins',sans-serif;
    background:linear-gradient(rgba(255,255,255,0.8),rgba(255,255,255,0.9)),
    url("../Bilder/berge.jpg") center/cover no-repeat fixed;
    color:var(--text-color);
    min-height:100vh;

}

.bg-wrapper{

    min-height:100vh;
    background:
        linear-gradient(rgba(206, 183, 183, 0.4), rgba(0,0,0,0.4)),
        url("../Bilder/berge.jpg") no-repeat center center;
    background-size:cover;
    display:flex;
    justify-content:center;
    align-items:center;
    color:rgb(40, 90, 107);
    padding:20px;

}

.container{
   background: rgba(199, 244, 255, 0.45);
   backdrop-filter: blur(22px);
   -webkit-backdrop-filter: blur(22px);
   border: 1px solid rgba(120, 220, 220, 0.25);
   padding:60px 80px;
   border-radius:20px;
   text-align:center;
   box-shadow:
       0 10px 40px rgba(0,0,0,0.5),
       inset 0 0 30px rgba(100,200,200,0.15);
   max-width:700px;
   width:100%;
   animation:fadeIn 1.2s ease;
}

.container::before{
   content:"";
   position:absolute;
   top:0;
   left:0;
   width:100%;
   height:100%;
   background: linear-gradient(
       120deg,
       rgba(255,255,255,0.15),
       rgba(255,255,255,0.02)
   );
   border-radius:20px;
   pointer-events:none;
}

.container:hover{

    transform:scale(1.02);

}

/* Titel */

h1{
    font-size:clamp(2rem,5vw,3rem);
    margin-bottom:30px;
    letter-spacing:2px;

}

/* Inhalt */

.box{
    margin-bottom:30px;

}

.box h2{

    margin-top:20px;
    margin-bottom:5px;

}

.box p{
   color:#000000;
   line-height:1.7;
}

.back{
   display:inline-block;
   padding:12px 30px;
   border-radius:30px;
   background: linear-gradient(135deg,#2f5d50,#5cc6c6,#6fa8a8);
   color:white;
   text-decoration:none;
   transition:0.3s;
   box-shadow:0 5px 15px rgba(0,0,0,0.3);
}
.back:hover{
   transform:translateY(-4px);
   box-shadow:0 10px 25px rgba(0,0,0,0.4);
}
/* Sprungstelle */
.scroll-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #2f5d50;
    color: white;
    padding: 12px 18px;
    border-radius: 30px;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: 0.3s;
}

.scroll-top:hover {
    background: #6fa8a8;
    transform: translateY(-3px);
}

html {
    scroll-behavior: smooth;
}

/* FOOTER */
footer {
    
    text-align: center;
    padding: 40px;
    color: #7a9a97;
    font-size: 0.88rem;
}
footer a {
    color: var(--main-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}
footer a:hover {
    color: var(--accent-color);
}


/* Animation */

@keyframes fadeIn{
    from{
        opacity:0;
        transform:translateY(20px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

/* Handy */

@media (max-width:600px){
    .container{
        padding:40px 25px;
    }
}
 