* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
}

body {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template:
    [content-start] 150px [content-center] 1fr [content-end] 1fr / 1fr [content-center] minmax(
      300px,
      800px
    )
    1fr;
  align-items: center;
  justify-items: center;
  overflow: hidden;
  background-color: #16181a;
}

::-moz-selection {
  background-color: #c8d5de;
  color: #ffffff;
}

::selection {
  background-color: #c8d5de;
  color: #ffffff;
}

.noselect {
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */
  -khtml-user-select: none; /* Konqueror HTML */
  -moz-user-select: none; /* Old versions of Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
}

/* width */
::-webkit-scrollbar {
  width: 15px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background: #b1eaff;
}

#stripe {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%) rotate(0deg);
  min-width: 110%;
  max-height: 50%;
  background-color: #27292e;
  width: 110%;
  height: auto;
  transition: ease 1s;
  z-index: -1;
  overflow: hidden;
}

#background {
  position: relative;
  top: -50px;
  left: -50px;
  height: 100%;
  width: 2200px;
}

/**
  * When styling the words, and other parts of the words, select them by their tag names, not their class
  * because the .disappear class won't work then.
  */

p {
  display: inline-block;
  margin: 5px;
}

h2,
p {
  color: white;
}

#overlay {
  position: fixed;
  display: none;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(110, 110, 110, 0);
  z-index: 1;
}
