/* This is a CSS file */
:root{
    --main:#6C63FF;
    --pink:#F4B7E5;
    --green:#B9F2B2;
    --blue:#B8E9F5;
    --orange:#FFD6A5;

    --white:#ffffff;
    --gray:#F4F4F4;
    --text:#333333;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:"Yu Gothic",sans-serif;
}

body{
    background:#F5F6FA;
}