html {
  min-height: 100vh;
}

body {
  color: #264040;
  background-color: #f2f2f2;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  height: 100%;
  margin: 0;
  border-width: 0px !important;
  overflow: auto;
}

#leftBox {
  width: 33%;
  height: 400px;
  display: inline-block;
  vertical-align: middle;
}

#middleBox {
  width: 33%;
  display: inline-block;
}

#spaceBox {
  width: auto;
  height: 25vh;
}

.text {
  text-align: center;
  margin: 10px;
}

button {
  color: #faebd7;
  font-size: 15px;
  font-family: Arial, Helvetica, sans-serif;
  background-color: lightseagreen;
  border-color: honeydew;
  display: block;
  width: auto;
  margin: 0 auto;
  margin-top: 8px;
}

#noFunButton {
  display: none;
  width: auto;
  opacity: 0;
  animation-name: fadein;
  animation-duration: 1.5s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}

@keyframes fadein {
  0% {
    opacity: 0;
    transform: translateX(0);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

#darkChangeButton {
  background-color: salmon;
}

#sites{
  position: absolute;
  text-align:right;
  right: 20px;
  bottom: 20px;
}

#gitPage{
  opacity: 0.2;
}