@charset "utf-8";

body {
  background : #FFFFF2;
}

.inner {
  width: 90%;
  height: 100vh;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
h1 {
  position: relative;
  margin: 0 auto 100px;
}
h1 img {
  width: 80%;
  max-width: 320px;
}
h1::after {
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  width: 60px;
  height: 10px;
  background: #EFC75C;
}
p {
  font-size: 32px;
  font-weight: bold;
  color: #0A323E;
  margin: 0 0 40px;
}
span {
  font-size: 20px;
  font-weight: bold;
  color: #3E8289;
}

@media screen and (max-width:960px){
  p {
    font-size: 26px;
    margin: 0 0 30px;
  }
  span {
    font-size: 16px;
  }
}
