@import url('https://fonts.googleapis.com/css2?family=Lexend+Deca:wght@100..900&family=Lexend+Giga:wght@100..900&family=Lexend+Mega:wght@100..900&family=Lexend+Peta:wght@100..900&family=Lexend+Tera:wght@100..900&family=Lexend:wght@100..900&display=swap');

/*Sẵn có*/
:root{
    --color-header-footer-text:#451DA0;
    --color-dark_gray-text:#414045;
    --color-gray-text:#939295;
    --color-blue:#2C95FF;
    --color-purple-text:#8B5CF6;
    --color-dark_purple-text:#341678;
}

*{
     box-sizing: border-box;
     margin: 0;
     padding: 0;
     text-decoration: none;
     border: none;
     outline: none;
     scroll-behavior: smooth;
     font-family: "Lexend", sans-serif;
     list-style: none;
     scroll-margin-top: 90px;
}

body {
    padding-top: 56px; 
    height: 100%;
    margin: 0;
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

.container{
    width:100%;
    max-width: 1340px;
    margin-left: auto;
    margin-right: auto;
}