*{
    margin: 0;
    padding: 0;
    outline: none !important;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;

    &::-webkit-scrollbar {
        width: 5px;
        height: 5px;
    }

    &::-webkit-scrollbar-track {
        box-shadow: none;
    }

    &::-webkit-scrollbar-thumb {
        background-color: #FFFFFF;
        border-radius: 50px;
    }
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    height: 100vh;
    background-image: url('../images/background.png');
}

a {
    text-decoration: none;
    color: #FFFFFF;
}

img {
    max-width: 100%;
}

p {
    color: #FFF;
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 400;
}
.line-1{
    width: 600px;
    height: 1px;
    background: linear-gradient(270deg, #FFF 18.58%, rgba(255, 255, 255, 0.00) 100%);
}
.line-2{
    width: 600px;
    height: 1px;
    background: linear-gradient(90deg, #FFF 18.58%, rgba(255, 255, 255, 0.00) 100%);
}