
@media only screen and (max-width: 1440px) {
    #homePage>div {
        padding-left: 5vw;
    }
}

@keyframes podskoki {
    from {
        transform: translateY(15px);
    }

    to {
        transform: translateY(0);
    }
}

#homePage .bouncing {
    animation: podskoki 0.4s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}

#homePage .stack {
    display: block;
}

#homePage span {
    display: inline-block;
}

#homePage > div > h2{
    margin-top: 12px;
    font-size: 3em;
}