@keyframes logo-rotate {
    100% {
        transform: rotate(360deg);
    }
}
@keyframes logo-spin {
    100% {
        transform: rotateY(360deg);
    }
}
@keyframes logo-grow {
    0% {
        transform: scale(100%);
    }
    50% {
        transform: scale(110%);
    }
    100% {
        transform: scale(100%);
    }
}
.logo-rotate {
    animation: logo-rotate 3s infinite;
    animation-timing-function: linear;
}
.logo-spin {
    animation: logo-spin 3s infinite;
    animation-timing-function: linear;
}
.logo-grow:hover {
    animation: logo-grow 3s infinite;
    animation-timing-function: linear;
}
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0c0c0c;
    z-index: 1000;
    transition: opacity 0.75s, visibility 0.75s;
}
.page-loader--hidden {
    opacity: 0;
    visibility: hidden;
}
.page-loader::after {
    content: url('../../images/logo.svg');
    width: 100px;
    height: 100px;
    animation: logo-rotate 3s infinite;
    animation-timing-function: linear;
}
