body {
  height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background-color: #f4f4f4;
}

.container {
  left: 0;
  right: 0;
  width: 90%;
  max-width: 1400px;
  height: auto;
  box-sizing: border-box;
  margin: 0 auto;
  /* outline: 10px solid #555; */
  z-index: 1;
  /* background-color: purple; */
}

.box-area {
  height: 399px;
  width: 399px;
  background-color: #fff;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  box-sizing: content-box;
  clear: both;
  margin: auto;
  border: 2px solid #ca95ff;
}
.box-area .box {
  display: block;
  width: 133px;
  height: 133px;
  background-color: rgb(255, 255, 255);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 50px;
  font-family: sans-serif;
  border: 2px solid #ca95ff;
  box-sizing: border-box;
}

.btn {
  background-color: #9c46f3;
  color: white;
  padding: 10px 20px;
  margin: 20px;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 4px;
  border: none;
  clear: both;
  display: block;
  width: 200px;
  margin: auto;
  margin-top: 20px;
}

@media (max-width: 500px) {
  body {
    min-width: 350px;
  }
  .box-area {
    height: 300px;
    width: 300px;
    background-color: #fff;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    box-sizing: content-box;
    clear: both;
    margin: auto;
  }
  .box-area .box {
    display: block;
    width: 100px;
    height: 100px;
    background-color: rgb(255, 255, 255);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    font-family: sans-serif;
  }
  .box-area .btn {
    background-color: #9c46f3;
    color: white;
    padding: 10px 20px;
    margin: 20px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 4px;
    border: none;
    clear: both;
    display: block;
    width: 100% !important;
    margin: auto;
    margin-top: 20px;
  }
}/*# sourceMappingURL=style.css.map */