/* */
.container-box {
  position: relative;
  text-align: center;
  color: white;
}

.container-box:before{
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  content: "";
  background-color: rgb(21 14 8);
  opacity: 0.6;
  z-index: 0;
}

.bottom-left {
  position: absolute;
  bottom: 8px;
  left: 16px;
}

.top-left {
  position: absolute;
  top: 8px;
  left: 16px;
}

.top-right {
  position: absolute;
  top: 8px;
  right: 16px;
}

.bottom-right {
  position: absolute;
  bottom: 8px;
  right: 16px;
}

.centered-top {
  position: absolute;
  top: 35%;
  left: 50%;
  font-size: 3.7vw;
  font-weight: bold;
  letter-spacing: 2vw;
    padding-left: 23px;
  transform: translate(-50%, -50%);
}
.centered {
  position: absolute;
  top: 46%;
  left: 50%;
  font-size: 8vw;
  font-weight: bold;
  transform: translate(-50%, -50%);
}
.centered-bottom {
  position: absolute;
  top: 31vw;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media screen and (max-width: 550px){
  .button {
    padding: 7px 13px;
    font-size: 11px;
  }
}