
.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;
    text-shadow: #474747 0px 0px 10px;
}

.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); 
}

.btn2 {
    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: 20%;
    font-size: 20px;
    font-family: "Montserrat";
    transition: 0.3s;
    overflow: hidden;
    text-shadow: #474747 0px 0px 10px;
}

.btn2:hover {
    transition: 0.3s;
    background-color: rgba(75, 75, 75, 0.212);
    transform: scale(1.02);
    margin: 10px;
}

.btn2:active {
    transition: 0.1s;
    transform: scale(0.95); 
}



.grid {
    z-index: 0;
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 0.7fr);
    grid-template-rows: 280px 280px 280px;
    gap: 15px;
    overflow: hidden;
    align-self: center;
    grid-template-areas: 
    "ich partner projekte"
    "socials partner projekte";
}




.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 var(--gridBorder-color);
border-bottom: solid 1px var(--gridBorder-color);
}

.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 var(--gridBorder-color);
border-bottom: solid 1px var(--gridBorder-color);
}


.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 var(--gridBorder-color);
border-bottom: solid 1px var(--gridBorder-color);
}

.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 var(--gridBorder-color);
border-bottom: solid 1px var(--gridBorder-color);
}



.pconly {
    display: block;
}

.btnse {
    position: relative;
    color: white;
    border-radius: 5px;
    border: 1px solid rgba(255, 0, 0, 0); /* Debugging purpose, to be removed later */
    background-color: rgba(26, 26, 26, 0.212);
    padding: 10px;
    margin: 10px;
    backdrop-filter: blur(10px);
    width: 25%;
    font-size: 20px;
    font-family: "Montserrat";
    transition: 0.3s;
    overflow: hidden;
    text-shadow: #474747 0px 0px 10px;
}

.se {
    border: 1px solid rgba(255, 0, 0, 0); /* Debugging purpose, to be removed later */
    text-decoration: none;
    color: white;
    width: 20px !important;
    position: relative;

}

.btnse:hover {
    transition: 0.3s;
    background-color: rgba(75, 75, 75, 0.212);
    transform: scale(1.02);
    margin: 10px;
}

.btnse:active {
    transition: 0.1s;
    transform: scale(0.95); 
}

.mobonly {
    display: none;
}

@media (max-width: 768px) {
  .grid {
    z-index: 0;
    position: relative;
    display: grid;
    grid-template-columns: 0.85fr ; /* 350px*/
    grid-template-rows: 310px 280px 280px 280px;
    gap: 10px;
    overflow: hidden;
    align-self: center;
    justify-content: center;
    grid-template-areas: 
    "ich"
    "partner"
    "socials"
    "projekte";
}

.überschrift3 {
color: var(--schrift-color);
font-family: "Montserrat", Arial, Helvetica, sans-serif;
position: relative;
top: 0;
text-align: center;
}

.mobonly {
    display: none;
}

.pconly {
    display: none;
}

}