/* Base / Reset Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  height: 100%;
}

body {
  font-family: "Raleway", sans-serif;
  background-color: var(--main-black);
  color: var(--main-white);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
}

@media (min-width: 768px) {
  body {
    height: 100vh;
    overflow: hidden;
  }
}