@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&family=Poppins:wght@100;300;400;500;600;700&display=swap');

:root{
    --poppins: "Poppins", sans-serif;;
    --outfit: "Outfit", sans-serif;

    --purple: #53498D;
    --black80: rgba(0, 0, 0, 0.8);
}


body, html{
    background-color: #FEFEFE;
    height: 100%;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}