@import url('https://fonts.googleapis.com/css2?family=Jersey+20&display=swap');

html {
    height: 100%;
    overflow: auto;
}

* {
    font-family: "Jersey 20", sans-serif;
}

body {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    height: 100vh;
    background:
        url(assets/sm.svg),
        linear-gradient(107.56deg, #000262 0%, #573992 50%, #7374C2 100%);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}


input:focus-visible {
    outline: none;
}