#preloader {
    position: fixed;
    background-color: #00a650;
    width: 100%;
    height: 100vh;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.loaderContent {
    position: relative;
    width: 120px;
    height: 120px;
}

.loaderFrame {
    position: absolute;
    width: 120px;
    height: 120px;
    background-color: #fefefe;
    animation-name: spin;
    animation-duration: 5s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    animation-fill-mode: forwards;
}

.loaderLogo {
    background-image: url('icon-128x128.png');
    background-color:#fefefe;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 40px;
    top: 20px;
    left: 20px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
