.lemons-color {
    background-color: #2196F3;
}

h4, p, a  {
    color: rgb(255, 249, 74);
    z-index: 100;
}

.star {
    margin: 50px 0;
    position: relative;
    display: block;
    color: #4ba9f6;

    width: 0px;
    height: 0px;
    border-right: 100px solid transparent;
    border-bottom: 70px solid  #4ba9f6;
    border-left: 100px solid transparent;
    transform: rotate(35deg);

    animation-name: spin;
    animation-duration: 75s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

.star:before {
    border-bottom: 80px solid  #4ba9f6;
    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:  #4ba9f6;
    top: 3px;
    left: -105px;
    width: 0px;
    height: 0px;
    border-right: 100px solid transparent;
    border-bottom: 70px solid  #4ba9f6;
    border-left: 100px solid transparent;
    transform: rotate(-70deg);
    content: '';
}

.star-container {
    padding: 10px;
    position: fixed;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right:0px;

    overflow: hide;
}

.star-box {
    min-width: 200px;
    min-height: 200px;
}

.star-row {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
}

@keyframes spin {
    from { transform: rotate(35deg); }
    to {transform: rotate(395deg); }
}