@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@700&family=Zen+Antique&display=swap');

html,
body {
    overflow: hidden;
    font-family: sans-serif;
}

.image-container{
    height: 100%;
    width: 100%;
    position: absolute;
    top:0;
    left: 0;
    bottom:0;
    right: 0;
    margin: auto;

}


#draw_canv,#bck_canv,#loading_canvs{
    display: none;
    position: absolute;
    margin: auto;
    top:0;
    left: 0;
    bottom:0;
    right: 0;
    width: 50%;
    height: 50%;
}

#loading_info{
    display: block;
}

#draw_canv, #loading_canvs{
    width: 50%;
    height: 50%;
}

#loading{
    position: absolute;
    text-align: center;
    margin: auto;
    top:25%;
    left: 0;
    bottom:0;
    right: 0;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    color: red;
    /* color: white; */
}

#percent{
    position: absolute;
    text-align: center;
    margin: auto;
    top:55%;
    left: 0;
    bottom:0;
    right: 0;
    /* color: white; */

}

#loading_canvs{
    transition: opacity 1s ease;
}

#loading_canvs:hover{
    opacity: 0;
}

@font-face {
    font-family:'Inter', sans-serif;
    src: url('https://fonts.googleapis.com/css2?family=Inter:wght@700&display=swap');
}

#loading-flower{
    position: absolute;
    text-align: center;
    margin: auto;
    top:0;
    left: 0;
    bottom:0;
    right: 0;
    width: 60px;
    height: 60px;
    animation: spin 5s linear infinite;
    
    /* filter: invert(100%) sepia(7%) saturate(27%) hue-rotate(199deg) brightness(107%) contrast(105%); */
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }