body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen",
    "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue",
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

code {
  font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New",
    monospace;
}

.titleContainer {
  position: relative;
  margin: 50px 5% 0;
}

.title {
  text-align: center;
}

.title::before,
.title::after {
  position: absolute;
  content: "";
  height: 2px;
  top: 55%;
  background: #666;
}

.title::before {
  left: 0;
}
.title::after {
  right: 0;
}

.btnStyle {
  outline: none;
  color: #fff;
  border: solid #a49ef0 1px;
  background: #a49ef0;
  padding: 5px 10px;
  border-radius: 3px;
  margin: 0 10px;
}

.btnStyle:hover {
  opacity: 0.5;
  cursor: pointer;
}

input {
  outline: none;
  border: none;
}

.instruction {
  margin: 0 20% 5%;
  border: solid #eee;
  color: #666;
  text-align: center;
  padding: 0 5%;
}

.instruction h3 {
  padding-bottom: 15px;
  border-bottom: solid #eee 2px;
}

.instruction ul {
  margin: 0 auto;
  text-align: left;
  width: 80%;
}

.instruction ul li {
  margin: 20px 0;
}

@media screen and (max-width: 600px) {
  .titleContainer {
    border-top: solid #ddd 5px;
  }

  .title::before,
  .title::after {
    width: 0;
  }

  .instruction {
    margin: 0 5% 5%;
  }

  .instruction ul {
    width: auto;
    padding: 0;
  }

  .instruction ul li {
    list-style-type: none;
  }
}
