/* default style  */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400;500;600;700&display=swap');

* {
  border: none;
  padding: 0;
  margin: 0;
  outline: 0;
  text-align: center;
  list-style: none;
  text-decoration: none;
}

body {
  box-sizing: border-box;
  font-family: 'Oswald', sans-serif;
  color: #2b2b2b;
  background-color: antiquewhite;
}

.container {
  width: 98%;
  font-size: 16px;
  background-color: antiquewhite;
  margin: 0 auto;
}
.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 10em;
  height: 2.5em;
  background: #a59430;
  font-size: 1.1em;
  color: #fff;
  cursor: pointer;
  border-radius: 0.5em;
  transition: all 0.3s linear;
}

.btn:hover {
  background-color: #d0bd58;
  color: #2b2b2b;
}
.sm {
  margin: 2.5em 0px;
}
.sp {
  padding: 1.5em 1.5em;
}
h1 {
  font-size: 3.5em;
}
h2 {
  font-size: 3em;
}
h3 {
  font-size: 2.5em;
}
h4 {
  font-size: 2em;
}
h5 {
  font-size: 1.5em;
}
h6 {
  font-size: 1em;
}

p {
  font-size: 1.2em;
}
