/*
  This file is used for all of your global styles and CSS variables.
  Check here https://developer.mozilla.org/en-US/docs/Web/CSS/Using_CSS_custom_properties for more info on using CSS variables.
*/
:root {
  --font-family: arial, sans-serif;
  --primary-color: #22a0ab;
  --text-color: #000;
  --text-color-dimmed: #666;

}

html,
body {
  font-family: var(--font-family);
  padding: 0;
  margin: 0;

  height: 100%;

  background-color: #f6f6f6;
  scroll-behavior: smooth;

  /* Prevents default scrolling */
}

main {
  padding-top: 95px;
  scroll-snap-type: y mandatory;

}

section {
  max-width: 1600px;
  margin: auto;
  margin-top: 10rem;

  display: flex;
  flex-direction: column;
  align-items: center;
}

.hide {
  display: none !important;
}


@media screen and (max-width: 768px) {

  html,
  body {}

  html,
  body,
  main {
    width: 100vw;
    overflow-x: hidden;
  }

  main {}
}