/* --------------------------------------
  Laptop Styling @media screen and (min-width: 64em) 
-------------------------------------- */

@media screen and (min-width: 700px) {

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  color: #2b2626;
  font-family: "Helvetica Neue",
  Arial,
  "Hiragino Kaku Gothic ProN",
  "Hiragino Sans",
  Meiryo,
  sans-serif;
}

h1, h2 {
  font-size: 1.6em;
  line-height: 2.8em;
  font-weight: 600;
  text-align: center;
}

h3, h4 {
  margin-top: 60px;
  font-size: 1.4em;
  line-height: 2.2em;
  text-align: center;
  font-weight: normal;
}

h5{
  margin-top: 10px;
  font-size: 1.5em;
  text-align: center;
  font-weight: normal;
}

ul {
  margin: 0;
  padding-left: 0;
  list-style: none;
}

p {
  line-height: 1.8;
}

figure {
  margin: 0;
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
  color:rgb(133, 9, 138);
  font-weight: 600;
}


a, input, textarea {
  transition: all 0.15s ease-in-out;
}

input[type="submit"]:hover {
  cursor: pointer;
}


#main-body{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.flex-center{
  margin: 300px auto;
  padding:40px 80px;
  width: 700px;
  height: auto;
  box-shadow:
      1px 1px 10px rgba(0, 0, 0, 20%),
      15px 15px 0 #afc3da;
}

}