@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');

*{
    margin: 0;
    font-family: "Nunito";
    scroll-behavior: smooth;
    font-weight: 400;
}
body{
    background-image: linear-gradient(rgb(57, 204, 204), rgb(0, 31, 63));
}


#Explanations{
    z-index: 5;
    top: 90px;
}



#headerBar{
    position: relative;
    top: -10px;
    width: 900px;
    height: 80px;
    box-shadow: 0 0 6.5px 2px rgba(0, 0, 0, 0.25);
    background-color: white;
    border-radius: 0 15px 15px 0;
    margin: 40px 0;
}
#Header{
    position: absolute;
    display: flex;
    align-items: center;
    height: 80px;
    width: 340px;
    background-color: #001F3F;
    clip-path: polygon(0% 0%, 82.1% 0%, 100% 100%, 0% 100%);
}
#Header h1{
    position: absolute;
    left: 18%;
    font-size: 40px;
    font-weight: 800;
    color: #39CCCC;
}
#HeaderBeschreibung{
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    width: 600px;
    right: 20px;
}
#HeaderBeschreibung h2{
    font-size: 40px;
    font-weight: 700;
    color: #001F3F;
}




#FilterMenuContainer{
    position: relative;
    width: 100px;
    left: 5em;
}
#FilterButton{
    transition: .15s ease;
    background-color: #39CCCC;
    border: none;
    border-radius: 15px;
    height: 40px;
    width: 40px;
    box-shadow: 0 0 6.5px 2px rgba(0, 0, 0, 0.25);
    outline: 3px solid rgb(57, 204, 204);
    outline-offset: -3px;
}
#FilterButton img{
    position: absolute;
    user-select: none;
    pointer-events: none;
    top: 9px;
    left: 8.5px;
}
#FilterButton:hover{
    outline-offset: 3px;
}
#checkboxSection{
    z-index: 3;
    position: absolute;
    background-color: #39CCCC;
    border-radius: 15px;
    width: 28em;
    height: 100px;
    top: -40px;
    left: 60px;
    box-shadow: 0 0 6.5px 2px rgba(0, 0, 0, 0.25);
}
#FilterMenuContainer ul{
    list-style: none;
    display: flex;
    flex-wrap: wrap;
}
#FilterMenuContainer li{
    color: #001F3F;
    margin: 3px 8px;
}
#DatumFilterSeite{
    position: absolute;
    font-size: 15px;
    top: 10px;
    left: 0;
    width: 180px;
}
#DatumFilterSeite li>input{
    border: 2px solid #001F3F;
}
#ProjektTypFilterSeite{
    position: absolute;
    font-size: 15px;
    top: 10px;
    right: 0;
    width: 180px;
}


.GridLayout{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 2fr));
    gap: 20px;
}
#ContainerSchowCase{
    padding: 70px 0px;
    
}
#ProjektShowCase{
    overflow: hidden;
    position: relative;
    margin: 50px;
    height: 100%;
    padding: 30px;
    background-color: #ffffff;
    box-shadow: 0 0 6.5px 2px rgba(0, 0, 0, 0.25);
    outline-offset: 20px;
    border-radius: 15px;
}
.ProjektInfoContainer{
    position: relative;
    width: 500px;
    height: 390px;
    margin: 5px 10px;
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 0 6.5px 2px rgba(0, 0, 0, 0.25);
}
.ProjektBild img{
    user-select: none;
    pointer-events: none;
    position: absolute;
    top: 0;
    max-height: 292px;
    height: 100%;
    width: 100%;
    left: 0px;
    top:0px;
    object-fit: cover;
    border-radius: 15px 15px 0 0;
}
.ProjektBeschreibung{
    position: absolute;
    display: flex;
    align-items: center;
    height: 105px;
    width: 100%;
    bottom: -1px;
    border-radius: 0 0 15px 15px;
    background-color: rgb(0, 31, 63);
}
.ProjektBeschreibung p{
    font-size: 18px;
    color: #ffffff;
    margin: 4px 25px;
}
.ProjektInfoHeader a{
    z-index: 2;
    position: absolute;
    background-image: linear-gradient(rgba(0, 31, 63, 0.849),rgba(0, 31, 63, 0.39), rgba(255, 255, 255, 0), rgba(255, 255, 255, 0));
    width: 100%;
    height: 100%;
    border-radius: 15px;
}
.ProjektInfoHeader h2{
    position: absolute;
    color: white;
    margin: 20px 22px;
    font-size: 36px;
    font-weight: 700;
    left: 0;
}
.ProjektInfoHeader h3{
    position: absolute;
    color: white;
    margin: 15px 20px;
    font-size: 26px;
    font-weight: 500;
    right: 0;
}
.ProjektInfoHeader a{
    transition: .15s ease;
    opacity: 0;
    position: absolute;
    color: white;
    text-decoration: none;
}
.ProjektInfoHeader a:hover{
    opacity: 1;
}




.ZeitStrall{
    position: absolute;
    right: 10px;
    height: 100%;
    width: 8px;
    background-color: #001F3F;
}
.ZeitStrall p{
    color: #001F3F;
    position: absolute;
    right: 60px;
    top: 0;
    font-size: 48px;
    font-weight: 900;
}
.ZeitStrall span{
    position: absolute;
    background-color: #001F3F;
    width: 110px;
    height: 8px;
    top: 58px;
    right: -55px;
}
.Container{
    position: relative;
    margin-top: 10em;
    width: 90%;
}