body {
  background-color: #171115;
}

input[type=checkbox]{
  height: 0;
  width: 0;
  visibility: hidden;
}

label {
  cursor: pointer;
  text-indent: -9999px;
  width: 100px;
  height: 50px;
  background: #81C7AD;
  display: block;
  border-radius: 100px;
  position: relative;
  box-shadow: inset 0px 0px 5px #050405;
}

label:after {
  content: '';
  position: absolute;
  top: 5px;
  left: 5px;
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 90px;
  transition: 0.3s;
}

input:checked + label {
  background: #EC5B40;
}

input:checked + label:after {
  left: calc(100% - 5px);
  transform: translateX(-100%);
}

label:active:after {
  width: 55px;
}

.switch-container {
  position: absolute;
  display: inline-block;
  width: 60px;
  height: 34px;
  margin-left: 85%;
}

h1 {
  font-family: montserrat;
  color: #EC5B40;
  text-shadow: 4px 3px 0px #81C7AD, 3px 2px 0px #81C7AD, 2px 1px 0px #81C7AD, 1px 0px 0px #81C7AD, 0px 0px 0px #81C7AD;
}

.twitter-feed {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero {
  font-size: 5rem;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.light-mode {
  background-color: #f1e0dd;
  color: #EC5B40;
  text-shadow: 4px 3px 0px #81C7AD, 3px 2px 0px #81C7AD, 2px 1px 0px #81C7AD, 1px 0px 0px #81C7AD, 0px 0px 0px #81C7AD;
}