:root {
  --black: black;
  --blue: rgb(65, 109, 254);
  --red: rgb(252, 63, 21);
  --green: rgb(68, 169, 105);
  --yellow: yellow;
  --grey: rgb(30, 30, 30);
  --grey-background: rgb(8, 8, 8);
}


/* CSS Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Chrome */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: black;
}

::-webkit-scrollbar-thumb {
  background: grey;
  border-radius: 10px;
}

/* Firefox */
html {
  scrollbar-width: thin;
  scrollbar-color: grey black;
}

html,
body {
  height: 100%;
  font-family: 'Roboto', Arial, sans-serif;
  /* font-family: Arial, sans-serif; */
  background-color: var(--black);
  color: white;
  position: relative;
  z-index: -2;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background: url('../assets/pure-black-background.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  filter: brightness(1.3);
}

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  outline: none;
  box-shadow: none;
  appearance: none;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

.contentWrapper {
  width: 95%;
  max-width: 1100px;
  border: 1px solid var(--grey);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-self: center;
}

/* Tablet (min-width: 768px) */
@media only screen and (min-width: 768px) {

}

/* Small screens (min-width: 1024px) */
@media only screen and (min-width: 1024px) {

}

/* Large+ screens (min-width: 1200px) */
@media only screen and (min-width: 1200px) {

}
