
body {
    background: linear-gradient(to bottom, rgb(255, 199, 16), rgba(2, 163, 2, 0.822));
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    margin: 0;
    padding: 20px;
    font-family: Arial, sans-serif;
}
.Überschrift {
    font-size: 300%;
    font-family: 'Fascinate', cursive;
    text-align: center;
    margin-bottom: 40px;
}

.box{
    position: relative;
    width: 75%;
    translate: 0 75px;
    margin: auto;
}

div div{
    translate:0 500px;
}
.image {
    opacity: 1;
    display: block;
    width: 100%;
    height: auto;
    transition: .7s ease;
    backface-visibility: hidden;
    border-radius: 100px;
}

.box:hover .image {
    opacity: 0.2;
}

#block-section {
    position: relative;
    height: 90vh;
    width: 90%;
    margin: 0 auto;
    overflow: hidden;
    padding-top: 2rem;
    padding-bottom: 2rem;
    border-radius: 10%;
}

#block-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

#block-section #content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    translate: 0 150px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

#block-section:hover img {
    opacity: 0.2;
}

#block-section:hover #content {
    opacity: 1;
}