:root {
    --primary-color: #141624;
    --white-color: #fff;
    --black-color: #000;
    --text-color: #A3A7BF;
}

html {
    /* 62.5% = 10px 100% = 16px */
    font-size: 62.5%;
    line-height: 1.6rem;
    font-family: "Inter", sans-serif;
    box-sizing: border-box;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}