.rotate-phone-message {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: white;
  pointer-events: none;
  background-color: #0e0e0e;
  opacity: 0;
  transition: opacity 0.3s 0.1s;
}
@media screen and (min-width: 429px) {
  .rotate-phone-message {
    display: none;
  }
}

.rotate-phone-message--show {
  pointer-events: all;
  opacity: 1;
  transition: none;
}

.rotate-phone-message img {
  margin: 0 0 25px;
}

.rotate-phone-message h2 {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 1.8px;
}

.rotate-phone-message span {
  display: block;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.6px;
}