/* Google font for the website */
@import url('https://fonts.googleapis.com/css2?family=Jost:wght@400;600;700&display=swap');

/* Box Model Hack */
* {
    box-sizing: border-box;
}

/* Clear fix hack */
.clearfix:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}

.clear {
    clear: both;
}

html {
    font-size: 62.5%;
}

body{
    font-family: 'Jost', sans-serif;
}