/* All delay classes will take 2x longer to start */
:root {
    --animate-delay: 1s;
  }

/* All delay classes will take half the time to start */
:root {
    --animate-delay: 0.5s;
  }

html, body {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    position: relative;
}

.main{
    width: 100%;
    height: 100%;
    background-image: url(./../img/bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.main-body{
    height: 100%;
    position: relative;
    max-width: 650px;
    max-height: 600px;
}

.main-body h1, .main-body h2{
    color:#fff;
    font-family: 'Museo 500';
    font-size: 2.5em;
    margin: .8em;
}

.main-body h2{
    font-size: 2em;
}

.star1 {
    position: absolute;
    top: 14%;
    right: 15px;
    transition:.5s;
}

.star2 {
    position: absolute;
    bottom: 15%;
    left: 15px;
    transition:.5s;
}

.star3 {
    position: absolute;
    top: 22%;
    left: 45px;
    transition:.5s;
}

.star4 {
    position: absolute;
    bottom: 32%;
    right: 50px;
    transition:.5s;
}

.star1:hover, .star2:hover, .star3:hover, .star4:hover {
    transform: scale(.9);
}

.bt-initial {
    width: 180px;
    position: absolute;
    bottom: 10px;
    cursor: pointer;
    transition:all .5s;
}

.bt-initial:hover {    
    transform: scale(.9);
}



@media(min-width: 320px)  and (max-width: 479px) {
    .main-body h1, .main-body h2{
        font-size: 2.2em;
    }

    .star1, .star2, .star3, .star4 {
        width: 60px;  
    }

    .star1{
        right: 0;
        top: 32%;
    }

    .star2{
        left: 0;
    }

    .star3{
        left: 0;
    }

    .star4 {
        right: 0;
    }
}

@media (min-width: 480px) and (max-width: 690px) {
    
    .star1, .star2, .star3, .star4 {
        width: 80px;
        
    }

    .star1,.star4 {
        right: 0;
    }

    .star3,.star2 {
        left: 0;
    }
}

