﻿* {
    box-sizing: border-box;
}
body {
    font-family: Arial;
    /*font-family:Segoe Script;*/
}
a {
    color: white;
}
a:link {
    color:white;
}

/* visited link */
a:visited {
    color: green;
}

/* mouse over link */
a:hover {
    color: hotpink;
}

/* selected link */
a:active {
    color: blue;
}        

