* { padding: 0; margin: 0; font-family: inherit; -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; }
html, body { color: #F2D469; background: #111; font-family: 'Montserrat', sans-serif; padding: 0; margin: 0; width: 100vw; height: 100vh; }
body { overflow-x: hidden; }
html { overflow-x: hidden; }

h1 { 
  position: absolute;
  display: inline-block;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: max-content;
  max-width: calc(100vw - 60px - 20px);
  padding: 5px 30px;
  font-size: 40px;
  text-align: center;
  overflow-wrap: break-word;
}

h1::after,
h1::before {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
}

h1::after {
  right: 0;
  content: '»';
}

h1::before {
  left: 0;
  content: '«';
}

.notice {
  position: absolute;
  display: inline-block;
  bottom: 5px; left: 50%;
  transform: translate(-50%, 0);
  font-size: 10px;
  color: #fff;
  opacity: 0.25;
}

@media screen and (max-width: 800px) {
  h1 {
    font-size: 25px;
    padding: 5px 20px;
    max-width: calc(100vw - 40px - 20px);
  }

  .notice {
    font-size: 8px;
  }
}