    section {
    margin-bottom: 10rem;
}

.kompetenzen {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    padding-top: 5rem;
}
.kompetenzen h1 {
    font-family: "Satisfy", cursive;
    font-weight: 400;
    font-style: normal;
    font-size: 5rem;
    color: #fdad54;
    text-shadow: rgba(0, 0, 0, 0.5) 2px 2px 3px;
    text-align: center;
    margin-bottom: 50px;
    -webkit-text-stroke: 0.01rem #fff;
}
.greeting {
    display: flex;
    flex-direction: column;
    width: 80%;
    max-width: 1200px;
    margin: auto;
    background-color: #70a7f3;
    border-radius: 10px;
    box-shadow: -0.0625rem -0.0625rem 0 #ffffff,
        0.0625rem 0.0625rem 0 #cccccc,
        0.3rem 0.2rem 1rem #4282da inset,
        -0.5rem -0.5rem 0.5rem #00ffbf0a inset,
        0.5rem 0.5rem 1rem rgb(0 0 0 / 0.4);
}
.greeting p {
    margin: 30px;
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 1.4rem;
    color: #fff;
    text-shadow: rgba(0, 0, 0, 0.3) 2px 2px 1px;
    text-align: center;
    line-height: 1.4;
}
.greeting p a {
    color: #fff;
}

.block h2{
    text-align: left;
    text-decoration: underline;
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 2.5rem;
    color: #70a7f3;
    text-shadow: rgba(0, 0, 0, 0.7) 1px 1px 1px;
    margin-bottom: 20px;
}
.block {
    margin-top: 50px;
}
.skills {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #86A08B;
    background: radial-gradient(circle,rgba(134, 160, 139, 1) 60%, 
    rgba(208, 219, 189, 1) 100%); 
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.5) 4px 4px 4px;
}
.info {
    display: flex;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 1.3rem;
    color: #292c2f;
    width: 80%;
}

.reports {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    border-radius: 5px;
    background-color: #80bbff;
    box-shadow: rgba(0, 0, 0, 0.5) 4px 4px 4px;
}
.report {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    border-radius: 10px;
}

.background ul li {
    color: #fff;
    text-shadow: rgba(0, 0, 0, 0.6) 1px 1px 1px;
    margin: 0.25rem;
    font-size: 1.8rem;
    list-style-type: disc;
}

.background {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    border-radius: 5px;
    z-index: 1;
     /* From https://css.glass */
background: rgba(255, 255, 255, 0.1);
border-radius: 10px;
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
backdrop-filter: blur(5px);
-webkit-backdrop-filter: blur(5px);
border: 2px solid rgba(255, 255, 255, 0.3);
padding: 1.25rem;
margin: 3.125rem auto;
}
.punkt {
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
    gap: 10px;
}

.background2 {
    display: flex;
    justify-content: center;
    align-items: center;
}
.img img {
    border: #fdad54 solid 3px;
    box-shadow: rgba(0, 0, 0, 0.5) 3px 3px 3px;
    -webkit-transition: -webkit-transform 0.5s;
    transition: -webkit-transform 0.5s;
    -o-transition: transform 0.5s;
    transition: transform 0.5s;
    transition: transform 0.5s, -webkit-transform 0.5s;
}
.img:hover img {
    transform: scale(1.8);
    -webkit-transform: scale(1.8);
    -ms-transform: scale(1.8);
}

.item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 75%;
    padding: 3.125rem;
    border-radius: 5px;
    margin: 3.125rem;
    
    /* From https://css.glass */
background: rgba(255, 255, 255, 0.1);
border-radius: 10px;
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
backdrop-filter: blur(5px);
-webkit-backdrop-filter: blur(5px);
border: 2px solid rgba(255, 255, 255, 0.3);
}
.text p {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 1.3rem;
    font-weight: 300;
    color: #fff;
    text-align: justify;
    text-shadow: rgba(0, 0, 0, 0.6) 1px 1px 2px;
    margin-top: 3.125rem;
    line-height: 1.4;
}

@media(max-width: 1300px) {
    .item {
    width: 50%;
}
.reports {
    justify-content: center;
}
}
@media (max-width: 1000px) {
    .skills {
        flex-direction: column;
    }
    .reports {
        flex-direction: column;
    }
    .kompetenzen h1 {
        font-size: 3.5rem;
    }
    .block h2 {
        font-size: 2.5rem;
    }
    .greeting p {
        font-size: 1.2rem;
    }
    .text p {
        font-size: 1.2rem;
    }
    .background ul li {
        font-size: 1.5rem;
    }
    .item {
        padding: 2rem;
        width: 75%;
    }
}
@media (max-width: 550px) {
    .punkt {
        flex-direction: column;
    }
    .background ul li {
        font-size: 1.3rem;
        margin-left: -1rem;
    }
    .background {
        width: 80%;
        padding: 1rem;
    }
    .background2 {
        width: 75%;
    }
    .item {
        padding: 1rem;
        width: 80%;
    }
}

