

.btn {
    position: relative;
    color: white;
    border-radius: 5px;
    border: none;
    background-color: rgba(26, 26, 26, 0.212);
    padding: 10px;
    margin: 10px;
    backdrop-filter: blur(10px);
    width: 90%;
    font-size: 20px;
    font-family: "Montserrat";
    transition: 0.3s;
    overflow: hidden;
}

.btn:hover {
    transition: 0.3s;
    background-color: rgba(75, 75, 75, 0.212);
    transform: scale(1.02);
    margin: 10px;
}

.btn:active {
    transition: 0.1s;
    transform: scale(0.95); 
}


.text {
    color: var(--schrift-color);
    font-family: "Fredoka";
}

.grid {
    z-index: 0;
    position: relative;
    display: grid;
    grid-template-columns: 400px 400px 400px;
    grid-template-rows: 280px 280px 280px;
    gap: 15px;
    overflow: hidden;
    align-self: center;
    grid-template-areas: 
    "ich partner projekte"
    "socials partner projekte";
}

.überschrift {
color: var(--schrift-color);
font-family: "Montserrat", Arial, Helvetica, sans-serif;
position: sticky;
}

.überschrift2 {
color: var(--schrift-color);
font-family: "Montserrat", Arial, Helvetica, sans-serif;
position: sticky;



border: none;
}

.Ich {
background-color: rgba(235, 235, 235, 0.151);
backdrop-filter: blur(10px);
border-radius: 10px;
grid-area: ich;
text-align: center;
align-items: center;
overflow: auto;
padding: 20px;
border-right: solid 1px rgb(92, 75, 97);
border-bottom: solid 1px rgb(92, 75, 97);
}

.Projekte {
background-color: rgba(235, 235, 235, 0.151);
backdrop-filter: blur(10px);
border-radius: 10px;
grid-area: projekte;
overflow: auto;
text-align: center;
align-items: center;
padding: 20px;
border-right: solid 1px rgb(92, 75, 97);
border-bottom: solid 1px rgb(92, 75, 97);
}


.Partner {
background-color: rgba(235, 235, 235, 0.151);
backdrop-filter: blur(10px);
border-radius: 10px;
grid-area: partner;
overflow: auto;
text-align: center;
align-items: center;
padding: 20px;
border-right: solid 1px rgb(92, 75, 97);
border-bottom: solid 1px rgb(92, 75, 97);
}

.Socials {
    background-color: rgba(235, 235, 235, 0.151);
backdrop-filter: blur(10px);
border-radius: 10px;
grid-area: socials;
overflow: auto;
text-align: center;
align-items: center;
padding: 20px;
border-right: solid 1px rgb(92, 75, 97);
border-bottom: solid 1px rgb(92, 75, 97);
}

