/*
Theme Name: TesQ
Author: G. Velthuis
Version: 1.0
*/


:root{

    --BgColor:#ffffff;
    --Blue:#4A43EC;
    --LightBlue:#EFF1FF;
    --White:#ffffff;
    --CTA:#FF5E57;

    --Font:'Poppins', sans-serif;

    --Transition: all 0.3s ease-in-out;

}

html{
    font-size: 62.5%;
}

body{
    background: var(--BgColor);
    color:#EAEAF0;
    overflow-x: hidden;
    font-size: 1.6rem;
    font-family: var(--Font);
    
}

.container{
    padding: 0 20px;
}

ul{
    list-style: none;
    padding: 0;
}

a{
    color: var(--Blue);
    text-decoration: none;
}

main{
    min-height: 100vh;
}
