/*Setting the fontStyle and importing the fonts*/
* {
    font-family: Quicksand;
}

@font-face {
    font-family: Quicksand;
    src: url(../Assets/Fonts/Quicksand-Regular.ttf);
}

@font-face {
    font-family: Quicksand;
    src: url(../Assets/Fonts/Quicksand-Medium.ttf);
    font-weight: 600;
}

@font-face {
    font-family: Quicksand;
    src: url(../Assets/Fonts/Quicksand-Bold.ttf);
    font-weight: bold;
}