@import url('https://fonts.googleapis.com/css2?family=Google+Sans:ital,opsz,wght@0,17..18,400..700;1,17..18,400..700&display=swap');

*{
    padding: 0;
    margin: 0;
    border: none;
    outline: none;
    box-sizing: border-box;
    font-family: "Google Sans", sans-serif;
    text-decoration: none;
    transition: all .2s linear;
}

section{
    padding: 2rem 9%;
    min-height: 100svh;
}



html{
    cursor: default;
    scroll-behavior: smooth;
    overflow-x: hidden;
    scroll-padding-top: 6rem;
    background: #fff;
}
html::-webkit-scrollbar{
    width: .6rem;
}
 html::-webkit-scrollbar-track{
    background-color:#cddfd8;
}
 html::-webkit-scrollbar-thumb{
    background-color: #ff9900;
    border-radius: 5rem;
}

body{
    position: relative;
    z-index: -50;
}

body::after{
    background: url(/images/resources/backAttach.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    height: 100%;
    width: 100%;
    position: absolute;
    inset: 0;
    content: '';
    z-index: -15;
    opacity: .150;
    filter: blur(2px);
}