.preloader {
    height: 100vh;
    width: 100%;
    background-color: white;
    color: black;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.preloader .text-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 100px;
    font-weight: 300;
    overflow: hidden;
    color: black;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .preloader .text-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        font-size: 40px;
        font-weight: 400;
        overflow: hidden;
        color: black;
    }
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
    .preloader .text-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        font-size: 90px;
        font-weight: 300;
        overflow: hidden;
        color: black;
    }
}
