@font-face {
    font-family: "loading";
    src: url("../fonts/FredokaOne-Regular.ttf");
}

.load-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.load-sign {
    font-family: loading, serif;
    font-size: 8rem;
    font-weight: bold;
    color: 	hsl(30, 100%, 93%);
    animation: beats 1.2s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
}

@keyframes beats {
    0% {
        transform: scale(0.95);
    }
    5% {
        transform: scale(1.1);
    }
    39% {
        transform: scale(0.85);
    }
    45% {
        transform: scale(1);
    }
    60% {
        transform: scale(0.95);
    }
    100% {
        transform: scale(0.9);
    }
}
