html {
  background-color: black;
  overflow: hidden;
  color: rgb(152, 152, 152);
  height: 100%;
  display: flex;
  flex-flow: column;
  margin: 0;
  border: 0;
  /* font-family: "Poppins"; */
  font-weight: 200;
  justify-content: center;
  align-items: center;
  width: 100% !important;
  box-sizing: border-box;
}
body {
  background-color: black;
  overflow: hidden;
  color: rgb(184, 184, 184);
  height: 100%;
  display: flex;
  flex-flow: column;
  margin: 0;
  border: 0;
  font-family: "Inconsolata";
  font-weight: 500;
  justify-content: center;
  align-items: center;
  width: 100% !important;
  box-sizing: border-box;
}

div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
a,
a:visited,
a:hover,
a:active {
  color: inherit;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
.nav-mobile {
  background: #000;
  position: fixed;
  bottom: 0;
  z-index: 12;
  overflow: hidden;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  align-self: center;
  font-size: 4vh;
  letter-spacing: 5px;
}
.c-nav a {
  padding: 1.6rem;
  font-size: 1.5rem;
  display: inline-block;
  padding: 1.6rem;
  text-decoration: none;
}
.nav-mobile a {
  padding: 4.5vh 0;
  text-decoration: none;
}

.c-nav a.active {
  background: rgba(#000, 0.1);
  color: #000;
  text-decoration: none;
}
.c-nav-toggle > button {
  font-size: 5vh;
}

/* @media only screen and (max-width: 767px) {
  body {
    padding: 2.5rem 2.5rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  body {
    padding: 5rem 5rem;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .c-nav-toggle > button {
    font-size: 7vh;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1023px) {
  body {
    padding: 7rem 7rem;
  }
}
@media only screen and (min-width: 1024px) {
  body {
    padding: 2vh 2vh;
  }
} */

/* 320px — 480px: Mobile devices
481px — 768px: iPads, Tablets
769px — 1024px: Small screens, laptops
1025px — 1200px: Desktops, large screens
1201px and more —  Extra large screens, TV */

@media screen and (min-width: 320px) and (max-width: 480px) {
  body {
    padding: 2.5rem;
  }
}
@media screen and (min-width: 481px) and (max-width: 768px) and (orientation: landscape) {
  body {
    padding: 1.5rem;
  }
}
@media screen and (min-width: 481px) and (max-width: 768px) and (orientation: portrait) {
  body {
    padding: 3rem;
  }
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
  body {
    padding: 5rem 5rem;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: wrap;
  }
  .c-nav-toggle > button {
    font-size: 7vh;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) and (orientation: landscape) {
  body {
    padding: 3rem;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: wrap;
  }
  .c-nav-toggle > button {
    font-size: 7vh;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1200px) {
  body {
    padding: 3vh;
    display: flex;
    flex-flow: wrap;
  }
}
@media screen and (min-width: 1201px) {
  body {
    padding: 3vh;
  }
}
