* {
  font-family: 'Roboto',sans-serif;
}

body {
  background-color: #3f3e7b;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

body .overlay {
  background-color: rgba(0, 0, 0, 0.75);
  position: fixed;
  width: 100%;
  height: 100vh;
  left: 0;
  top: 0;
  opacity: 0;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  pointer-events: none;
}

body .overlay.active {
  opacity: 1;
  pointer-events: all;
}

body .main-container {
  margin-top: 200px;
  background-color: #fff;
  border-radius: 10px;
  padding: 50px;
}

button {
  color: #000;
  background-color: #e5e5e5;
  border-radius: 5px;
  border: none;
  padding: 20px;
  font-size: 1.5em;
  cursor: pointer;
  -webkit-transition: all .25s;
  transition: all .25s;
  margin: 0 20px;
}

button:hover {
  background-color: #cccccc;
}

.bar {
  position: fixed;
  left: -20%;
  top: 0;
  width: 20%;
  background-color: #fff;
  height: 100vh;
  padding-top: 300px;
  text-align: center;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.bar.active {
  left: 0%;
}
/*# sourceMappingURL=styles.css.map */