/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/* General CSS for universal selector (*), html, body, etc */
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  box-sizing: border-box;
  font-family: var(--font-primary);
  background-color: var(--background-light);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--text-color-light);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
  line-height: 1.5;
  font-size: 14px;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}
