h1{
    /* font-size: 5em; */
}

p{
    /* font-size: 2em; */
}

body{
    color: white;
    font-family: 'Playpen Sans', cursive;
    background-color: rgb(148, 177, 255);
}

.star-left{
    animation : rotate-star-left 10s linear;
    animation-iteration-count: infinite;
}

@keyframes rotate-star-left{
    from {
        transform : rotate(0deg);
    }

    to{
        transform : rotate(360deg);
    }
}

.star-right{
    animation : rotate-star-right 10s linear;
    animation-iteration-count: infinite;
}

@keyframes rotate-star-right{
    from {
        transform : rotate(0deg);
    }

    to{
        transform : rotate(-360deg);
    }
}

@media only screen and (max-width: 600px){
    .img-fluid{
        max-width: 50%;        
    }

    .img-star{
        min-width: 90%;
    }
}