@import url('https://fonts.googleapis.com/css?family=PT+Sans');

body {
    margin: 0;
    padding: 0;
}


.sg-jumbotron {
    width: 100%;
    height: 520px;
    background-image: url('../images/rocket.png'), url('../images/saturn.png'), url('../images/tile.png');
    background-repeat: no-repeat, no-repeat, repeat;
    background-position: 85% 120%, 103% 0%, top;
    background-size: auto 420px, auto 460px, auto;
    display: flex;
    align-items: flex-end;
    position: relative;
}

.sg-jumbotron.animation {
    animation: object-animation;
    animation-duration: 5s;
    animation-iteration-count: infinite;
}

@keyframes object-animation  {
    0% {
        background-position: 85% 120%, 103% 0%, top;
    }
    50% {
        background-position: 85% 100%, 100% 0%, top;
    }
    100% {
        background-position: 85% 120%, 103% 0%, top;
    }
}

.sg-jumbotron i {
    position: absolute;
    transition: all;
    color: #FFF;
}

.sg-jumbotron-text {
    margin: 0 0 32px 32px;
    color: #FFF;
    font-family: 'PT Sans', sans-serif;
    flex: 0 0 30%;
}

.sg-jumbotron-text > div {
    margin-bottom: 8px;
}

.sg-jumbotron-text__heading {
    font-size: 56px;
    text-transform: capitalize;
    font-weight: 700;
    line-height: 90%;
}

.sg-jumbotron-text__post-heading {
    font-size: 20px;
    text-transform: capitalize;
    font-weight: 600;
}

.sg-jumbotron-text__caption{
    font-size: 14px;
}

.star {
    margin: 50px 0;
    position: relative;
    display: block;
    color: red;
    width: 0px;
    height: 0px;
    border-right: 100px solid transparent;
    border-bottom: 70px solid red;
    border-left: 100px solid transparent;
    transform: rotate(35deg);
  }
  .star:before {
    border-bottom: 80px solid red;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    position: absolute;
    height: 0;
    width: 0;
    top: -45px;
    left: -65px;
    display: block;
    content: '';
    transform: rotate(-35deg);
  }
  .star:after {
    position: absolute;
    display: block;
    color: red;
    top: 3px;
    left: -105px;
    width: 0px;
    height: 0px;
    border-right: 100px solid transparent;
    border-bottom: 70px solid red;
    border-left: 100px solid transparent;
    transform: rotate(-70deg);
    content: '';
  }