/*---------------------Fonts-----------------*/
@import url('https://fonts.cdnfonts.com/css/game-bubble');
@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.cdnfonts.com/css/darling-coffee');

/*---------------------Fonts-----------------*/

/*---------------------Roots-----------------*/

:root {
    ---pink: #e2a290;
    ---white: #ffffff;
    ---black: #222222;
    ---border: #e5e5e5;
}

/*---------------------Roots-----------------*/

/*---------------------Bodys----------------*/
* {
    margin: 0px;
    padding: 0px;
    border: none;
    outline: none;
    text-decoration: none;
    text-transform: uppercase;
    box-sizing: border-box;
    font-family: "Barlow", sans-serif;
}

html {
    font-size: 100%;
    scroll-behavior: smooth;
    scroll-padding-top: 0px;
    background-image: url(img/back.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: auto;
}

section {
    padding: 20px 120px;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(---white);
}

::-webkit-scrollbar-thumb {
    background-color: var(---pink);
    height: 200px;
}


/*---------------------Bodys----------------*/

/*Arrow*/
.uppericon{
    position: fixed;
    right: 2%;
    bottom: 2%;
    color: var(---white);
    display: none;
    transition: 0.5s all linear;
    z-index: 7;
}
/*Arrow*/


/*Animation*/
.loading{
    position: fixed;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: var(---white);
    z-index: 1000;
}
.loading img{
    width: 6%;
}
.dispper{
    animation: vanish 1s forwards;
}
@keyframes vanish {
    100%{
        opacity: 0;
        visibility: hidden;
    }
}
/*Animation*/



@media (max-width:500px) {
    .loading img{
        width: 15%;
    }
}




