#hero-section {
    max-width: 1000px;
    margin-bottom: 150px;
}

.hero-header {

}

.hero-title {

}

.hero-title h2 {
    font-size: 3.2em;
    font-weight: 300;
    line-height: 60px;
    color: var(--primary-color);
    text-align: center;
}

.hero-title h2 strong {
    font-style: italic;
    font-weight: 600;
}

.hero-title h2 u {
    text-underline-offset: 8px;
}

#hero-section .planet-container {
    position: absolute;
    top: 100px;
    left: -100px;
}

#hero-section .star {
    position: absolute;
    color: var(--primary-color);
}

#hero-section #planet {
    position: absolute;
    left: 100px;
    top: 200px;
    font-size: 5em;
    color: var(--primary-color);
}

#hero-section #planet-star1 {
    left: 60px;
    top: 220px;
    font-size: 0.8em;
}

#hero-section #planet-star2 {
    left: 80px;
    top: 100px;
    font-size: 1.2em;
}

#hero-section #planet-star3 {
    left: 190px;
    top: 310px;
    font-size: 0.5em;
}

#hero-section #planet-star4 {
    left: 250px;
    top: 260px;
    font-size: 1.2em;
}

#hero-section #planet-star5 {
    left: 210px;
    top: 160px;
    font-size: 0.6em;
}

#hero-section #planet-star6 {
    left: 110px;
    top: 320px;
    font-size: 0.9em;
}

#hero-section #planet-star7 {
    left: 210px;
    top: 340px;
    font-size: 0.8em;
}

#hero-section #planet-star8 {
    left: 30px;
    top: 300px;
    font-size: 1em;
}

#hero-section .rocket-container {
    position: absolute;
    top: 100px;
    right: -50px;
}

#hero-section #rocket {
    position: absolute;
    right: 60px;
    top: 160px;
    font-size: 10em;
    color: var(--primary-color);
}

#hero-section #rocket-star1 {
    right: 60px;
    top: 80px;
    font-size: 2em;
}

#hero-section #rocket-star2 {
    right: -20px;
    top: 110px;
    font-size: 1.5em;
}

#hero-section #rocket-star3 {
    right: 20px;
    top: 60px;
    font-size: 1em;
}

.hero-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.hero-content p {
    margin-bottom: 40px;
}

@media screen and (max-width: 992px) {

    .hero-title h2 {
        font-size: 2.4em;
        line-height: 50px;
    }

    .hero-content .hero-phrase {
        font-size: 0.95em;
    }
}

@media screen and (max-width: 1200px) {

    #hero-section {
        margin-bottom: 50px;
    }
    
    #hero-section .planet-container {
        display: none;
    }

    #hero-section .rocket-container {
        display: none;
    }

}


@media screen and (max-width: 768px) {

    .hero-title h2 {
        font-size: 1.8em;
        line-height: 40px;
    }

    .hero-content .hero-phrase {
        font-size: 0.85em;
    }
}

@media screen and (max-width: 576px) {

    .hero-title h2 {
        font-size: 1.2em;
        line-height: 30px;
    }

    .hero-content .hero-phrase {
        font-size: 0.85em;
    }
}