/* loader */


.layout {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: teal;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    overflow: hidden !important;
}

.layout .skeleton_effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    animation: skeleton 1s linear infinite alternate;
    object-fit: cover;
}


/* Animation */

@keyframes skeleton {
    0% {
        background-color: hsl(200, 20%, 70%);
    }

    100% {
        background-color: hsl(200, 20%, 90%);
    }
}

.layout .brand_name {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #fff;
    line-height: 100vh;
    color: hsl(200, 20%, 10%);
    text-align: center;
    font-size: 100px;
    /* bg screen display */
    mix-blend-mode: screen;
    font-weight: bolder;
    font-family: 'Poppins', sans-serif;
}