@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@1,500&display=swap');

#loading-box{
    z-index: 10000;
    position: absolute;
    background-color: #f5f3ec;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
    overflow: hidden;
}
.svg-loading-container{
    display: flex;
	justify-content: center;
	align-items: center;
}

#loading-box svg{
    z-index: -1;
    position: absolute;
    width: 90%;
}
#loading-box svg path{
    fill: #e4c8ad;
    stroke-width: 0;
}

@media (min-width: 576px) {
    #loading-box svg{
        z-index: -1;
        position: absolute;
        width: auto;
        height: 80%;
    }
}