::selection {
    color: #d10a14;
    background: #fff2eb;
}

::-moz-selection { /* Code for Firefox */
    color: #d10a14;
    background: #fff2eb;
}

.hero-section{
    position: relative;
    width: 100vw;
    height: 100vh;
    background-color: #d10a14;
    /* background-image: url('../../assets/images/shared/bigfile-subtitle-magisch.png'); */
}

.hero-text{
    font-family: 'Dela Gothic One', sans-serif;
    color: #fff2eb;
    text-transform: uppercase;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-title{
    position: absolute;
    text-align: center;
    text-shadow: 1px 1px 10px black;
    z-index: 10;
}

.hero-title h1{
    font-size: 2.7rem;
}

.hero-subtitle{
    position: absolute;
    color: transparent;
    -webkit-text-stroke: 1px #fff2eb;
}

.hero-subtitle h2{
   font-size: 3.2rem;
}

#hero-3d{
    position: absolute;
    max-width: 150%;
}

#hero-wolke{
    max-width: 150%;
}

.stars-scene{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
}

.stars-scene i{
    position: absolute;
    background-color: #fff;
    border-radius: 50%;
    animation: animateStars linear infinite;
    opacity: 0;
}

/* Keyframes */

@keyframes animateStars{

    0%{
        opacity: 0;
        transform: translateY(0);
    }

    10%,90%{
        opacity: .5;
    }

    100%{
        opacity: 0;
        transform: translateY(-100px);
    }

}

/* ----- Mediaqueries ----- */

/* Ganz kleine Größen wie z.B. iPhone 4 */
@media (max-width: 320px){

    .hero-text{
        padding-top: 2em;
    }

    .hero-title h1{
        font-size: 2.5rem;
   }

    .hero-subtitle h2{
        font-size: 2.7rem;
   }

}


/* Größer als Standardgröße */

@media (min-width: 380px){

    .hero-subtitle h2 {
        font-size: 3.6rem;
    }

}

@media (min-width: 420px){

    .hero-title h1 {
        font-size: 2.6rem;
    }

    .hero-subtitle h2 {
        font-size: 14vw;
    }

    #hero-wolke {
        max-width: 170%;
    }

}

@media (min-width: 650px){

    .hero-title h1 {
        font-size: 3rem;
    }

}

@media (min-width: 768px){

    .hero-title h1 {
        font-size: 5.3rem;
    }

}

@media (min-width: 992px){

    .hero-title h1 {
        font-size: 7rem;
    }

}

@media (min-width: 1200px){

    .hero-title h1 {
        font-size: 7rem;
    }

    .hero-subtitle h2 {
        font-size: 13vw;
    }
    
}

@media (min-width: 1400px){

    .hero-title h1 {
        font-size: 7.5rem;
    }

    .hero-subtitle h2 {
        font-size: 12rem;
    }
    
}

@media (min-width: 1700px){

    .hero-title h1 {
        font-size: 9.5rem;
    }

    .hero-subtitle h2 {
        font-size: 14rem;
    }
    
}

@media (min-width: 1920px){

    

}