body {
  background-color: white;
  font-size: 17px;

}
html {
  overflow-y: scroll;
}
.center {
  display: grid;
  padding: 15%;

}

.logo {
  background-image: url('assets/img/LobbyLogo.png');
  width: 700px;
  size: 300px 500px;
  height: 250px;

  text-align: center;

}

.btn-primary {
  color: #fff;
  background-color: #f34565 !important;
  border-color: #f34565 !important;
}

.text{
  font-family: 'Oswald', sans-serif;
  font-size: 50px;
  text-align: center;
  margin-top: 4rem;
}

.switchBtn {
  position: relative;
  display: inline-block;
  width: 110px;
  height: 34px;
}
.switchBtn input {
  display: none;
}
.slide {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  padding: 8px;
  color: #fff;
}
.slide:before {
  position: absolute;
  content: '';
  height: 26px;
  width: 26px;
  left: 78px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
input:checked + .slide {
  background-color: #8ce196;
  padding-left: 40px;
}
input:focus + .slide {
  box-shadow: 0 0 1px #01aeed;
}
input:checked + .slide:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
  left: -20px;
}

.slide.round {
  border-radius: 34px;
}
.slide.round:before {
  border-radius: 50%;
}

