@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');


*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    transition: all .2s linear;
    border: none;
    outline: none;
    text-decoration: none;
    font-family: "Roboto", sans-serif;
}

html{
    cursor: default;
    overflow-x: hidden;
    scroll-behavior: smooth;
}
section{
    padding: 2rem 9%;
    min-height: 100vh;
}

body{
    background: #333;
    overflow-x: hidden;
}