/*
   ==========================================
        Base Styles for page 
   ==========================================
  */
@import url('https://fonts.googleapis.com/css?family=Open+Sans&display=swap');
@import url('https://fonts.googleapis.com/css?family=Nunito&display=swap');

* {
    padding: 0;
    margin: 0;
}

html, body {
    box-sizing: border-box;
    font-family: 'Open Sans', -apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,Oxygen,Ubuntu,'Fira Sans','Droid Sans','Helvetica Neue',sans-serif;
    font-size: 14px;
    font-weight: normal;
    font-style: normal;
    line-height: 1.5;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}