@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@100..800&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style: none;
}

:root {
    --font-size: 62.5%;
    --border: 0.1rem solid #ccc;
    --b-radius: 0.5rem;
    --bg-color: #212240;
    --b-shadow: -0.3rem 0.4rem 0.7rem 0.1rem rgba(0, 0, 0, 0.2);
    --time: .2s ease-in-out;
}

html {
    font-size: var(--font-size);
    scroll-behavior: smooth;
    font-family: "Sora", sans-serif;
}

body {
    width: 100%;
    height: auto;
}