* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Zen Kaku Gothic New", "Fugaz One", "Dela Gothic One", sans-serif;
}

html,
body {
  width: 100%;
  height: 100%;
  min-width: 450px;
}

.container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

@media (max-width: 1050px) {
  .container {
    max-width: 700px;
  }
}

.contents-container {
  display: flex;
  gap: 20px;
  width: 100%;
  max-width: 950px;
  margin: 0 auto;
}

.full {
  width: 100%;
  height: 100%;
}

.flex {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
}

.flex-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

section {
  padding: 80px 0;
}

.section-title-white {
  width: 100%;
  height: 70px;
  position: relative;
  justify-content: start;
  h2 {
    position: absolute;
    padding-left: 80px;
    font-family: "Fugaz One";
    font-size: 64px;
    letter-spacing: 8px;
    color: transparent;
    -webkit-text-stroke: 1px #000;
  }
  @media (max-width: 1050px) {
    h2 {
      font-size: 40px;
    }
  }
  p {
    position: absolute;
    width: 70px;
    height: 30px;
    background: #222;
    font-family: "Dela Gothic One";
    font-size: 10px;
    color: #fff;
    transform: rotate(-90deg);
    transform-origin: center;
  }
  svg {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
  }
}

.section-title-black {
  width: 100%;
  height: 70px;
  position: relative;
  justify-content: start;
  h2 {
    position: absolute;
    padding-left: 80px;
    font-family: "Fugaz One";
    font-size: 64px;
    letter-spacing: 8px;
    color: transparent;
    -webkit-text-stroke: 1px #fff;
  }
  @media (max-width: 1050px) {
    h2 {
      font-size: 52px;
    }
  }
  p {
    position: absolute;
    width: 70px;
    height: 30px;
    color: #000;
    font-family: "Dela Gothic One";
    font-size: 10px;
    background: #fff;
    transform: rotate(-90deg);
    transform-origin: center;
  }
  svg {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }
}

.sub-title {
  font-family: "Dela Gothic One";
  font-size: 32px;
  letter-spacing: 6px;
}

a {
  color: inherit;
  text-decoration: none;
  z-index: 10;
}
