@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --sml-purple: #ab23ff;
    --sml-blue: #1a1b41;
    --sml-green: #6b9c34;
}

html {
    scroll-behavior: smooth;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
}

body{
    font-family: 'Montserrat', sans-serif;
    background-color: #e7e7e7;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
}
a:hover {
    text-decoration: underline;
    color: #be58fc;
}