.preloader {
    font-family: 'Pathway Gothic One', 'BenchNine';

    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #FFFFFF;
    color: #CFA144;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 1000;
}

.preloader p {
    font-size: 4rem;
    font-weight: 500;
    margin-bottom: 40px;
}

.preloader div {
    font-size: 2rem;
}

@media (max-width: 768px) {

    .preloader p {
        font-size: 3rem;
        font-weight: 500;
        margin-bottom: 30px;
    }
    
    .preloader div {
        font-size: 2rem;
    }
}

