/* Variables */
/* Variables End*/
/* Functions */
/* Functions End */
/* Mixins */
/* Mixins End*/
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-family: Verdana, sans-serif;
  color: #e9e9e9;
}

body {
  width: 100%;
}

.topNav {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  height: 10vh;
  width: 100%;
  background-color: #222222;
  z-index: 1;
}

.topNav__underNav {
  display: block;
  height: 10vh;
  width: 100%;
}

.topNav__logo {
  display: block;
  float: left;
  height: 10vh;
}

.topNav__checkbox {
  display: none;
}

.topNav__checkbox:checked ~ .topNav__list {
  width: 90%;
}

.topNav__checkbox:checked ~ .topNav__label .topNav__bar {
  background: transparent;
}

.topNav__checkbox:checked ~ .topNav__label .topNav__bar::before {
  width: 100%;
  top: 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.topNav__checkbox:checked ~ .topNav__label .topNav__bar::after {
  width: 100%;
  top: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.topNav__label {
  display: block;
  cursor: pointer;
  height: 10vh;
  width: 10vh;
  float: right;
  position: relative;
  z-index: 4;
}

@media only screen and (min-width: 800px) {
  .topNav__label {
    display: none;
  }
}

.topNav__bar {
  display: block;
  position: relative;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  height: 1vh;
  width: 80%;
  background-color: #e9e9e9;
  z-index: 3;
}

.topNav__bar::before {
  display: block;
  position: absolute;
  top: -2vh;
  right: 0;
  height: 100%;
  width: 40%;
  background-color: #e9e9e9;
  content: "";
  -webkit-transition: -webkit-transform 200ms ease;
  transition: -webkit-transform 200ms ease;
  transition: transform 200ms ease;
  transition: transform 200ms ease, -webkit-transform 200ms ease;
}

.topNav__bar::after {
  display: block;
  position: absolute;
  top: 2vh;
  right: 0;
  height: 100%;
  width: 70%;
  background-color: #e9e9e9;
  content: "";
  -webkit-transition: -webkit-transform 200ms ease;
  transition: -webkit-transform 200ms ease;
  transition: transform 200ms ease;
  transition: transform 200ms ease, -webkit-transform 200ms ease;
}

.topNav__list {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  height: 100vh;
  width: 0;
  background-color: #292929;
  list-style-type: none;
  padding: 5vh 0 0 0;
  z-index: 2;
  -webkit-transition: width 400ms ease-out;
  transition: width 400ms ease-out;
}

@media only screen and (min-width: 800px) {
  .topNav__list {
    width: auto;
    height: auto;
    padding: 0;
    background-color: transparent;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

@media only screen and (min-width: 800px) {
  .topNav__list_item {
    display: inline-block;
  }
}

.topNav__link {
  padding: 3vh 0;
  text-align: center;
  display: block;
  text-decoration: none;
}

@media only screen and (min-width: 800px) {
  .topNav__link {
    padding: 2vh 3vh;
  }
}

.topNav__link:hover {
  color: #ff5700;
}

.topNav__link--active {
  color: #ff5700;
}

.main {
  display: block;
  padding: 2em;
  background-image: url(../img/welcome_background.svg);
  background-size: 100% 100%;
  height: 80vh;
  width: 100%;
  position: relative;
}

.welcome {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.welcome__title {
  color: #ff5700;
}

.copyright {
  display: block;
  height: 10vh;
  width: 100%;
  background-color: #222222;
  border-top-style: solid;
  border-top-color: #ff5700;
  border-top-width: 2px;
  position: relative;
}

.copyright__text {
  display: block;
  width: 94%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
  font-size: 0.7em;
  margin: 0 auto;
}
