.hero-section {
    overflow: clip;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 2rem;
    box-sizing: border-box;
}

@keyframes flyIn {
    from {
        opacity: 0;
        /*Distanz von wie weit unten es hereinfliegt*/
        transform: translateX(100vw);
    }

    to {
        opacity: 1;
        /*Distanz wie weit nach oben es fliegt*/
        transform: translateX(0);
    }
}

@keyframes revealCircle{
    from{
        opacity:0;
        clip-path: circle(0% at 50% 50%);
    }

    to {
        opacity: 1;
        clip-path: circle(100% at 50% 50%);
    }
}

.hero-content {
    background-color: rgba(0,0,0,0.9);
    border-radius: 1rem;
    box-shadow: 0 5px 15px #0a8cb4;
    padding: 2rem;
    animation: revealCircle 1s ease-out forwards;
    align-self: center;
}

@media (max-width:800px){
    .hero-content{
        margin-top:50px;
    }
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.1;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
    font-weight: 400;
}

.btn-primary {
    padding: 0.75rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    height: 4rem;
    width: 14rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: center;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .btn-primary {
        padding: 0.6rem 1.5rem;
        font-size: 1rem;
    }
}