/*
globally used style
*/

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: $primary-font;
  margin: 0;
}

img {
  vertical-align: middle;
}

.section-spacing-top {
  padding-top: 100px;
}

.section-spacing-bottom {
  padding-bottom: 100px;
}

a {
  text-decoration: none;
  color: #000000;

  &:hover {
    text-decoration: none;
  }
}