.home-main-section{
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    flex-grow: 1;
}

.home-main-section .image-wrapper{
    display: flex;
    flex-grow: 1;
    flex-direction: column;
    justify-content: flex-end;
}

.home-main-section .cheer-image{
    background: url(images/cheer.png);
    flex-grow: 1;
    max-height: 70vh;
    min-width: 30vw;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom left;
}

.home-main-section .call-to-action{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 1rem;
    align-self: center;
}

@media(max-width:900px){
    .home-main-section .image-wrapper{
        display: none;
    }
    .home-main-section{
        justify-content: center;
    }
}

.homepage-star-1{
    background: url(images/Star1.png);
    background-repeat: no-repeat;
    position: absolute;
    width: 257px;
    height: 268px;
    bottom: 1vw;
    left: 8vw;
    z-index: -1;
}

.homepage-star-2{
    background: url(images/Star2.png);
    background-repeat: no-repeat;
    position: absolute;
    width: 400px;
    height: 450px;
    top: 10vw;
    left: 45vw;
    z-index: -1;
}

.homepage-star-3{
    background: url(images/Star3.png);
    background-repeat: no-repeat;
    position: absolute;
    width: 300px;
    height: 300px;
    top: 3vw;
    right: 5vw;
    z-index: -1;
}

.homepage-star-4{
    background: url(images/Star4.png);
    background-repeat: no-repeat;
    position: absolute;
    overflow: hidden;
    width: 15vw;
    height: 15vw;
    bottom: 0;
    right: 0;
    z-index: -1;
}
.homepage-star-4::before{
    content: ();
    transform: translate(40%,40%);
    position: absolute;
    height: 100%;
    width: 100%;
}