.mainviual{
  height: 20vh;
  width: 100%;
  position: relative;
  z-index: 0;
  background: var(--main);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  & h1{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: fit-content;
    height: fit-content;
    color: #fff;
    text-shadow: 1px 1px 3px #3b3b3b;
    letter-spacing: 1px;
    line-height: 1.7;
    font-size: 200%;
    text-align: center;
  }
}

.content{
  & h1{
    background: #45c5c5;
    color: #fff;
    text-align: center;
    letter-spacing: 1px;
    line-height: 1.7;
    padding: 15px 0 10px;
    margin: 60px auto 30px;
    outline: 1px solid #fff;
    outline-offset: -5px;
  }
  & h2{
    background: var(--accent);
    color: #fff;
    text-align: center;
    letter-spacing: 1px;
    line-height: 1.7;
    padding: 15px 0 10px;
    margin: 60px auto 30px;
    outline: 1px solid #fff;
    outline-offset: -5px;
  }
  .accordion{
    & dt{
      display: block;
      color: var(--main);
      margin: 10px 0;
      font-size: 116%;
      font-weight: bold;
      letter-spacing: 1px;
      padding: 0 10px;
      text-align: justify;
    }
    & dd{
      padding: 0 15px;
      text-align: justify;
      letter-spacing: 1px;
      line-height: 1.7;
      color: #535353;
    }
  }
}