.mobile-blocker {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: black;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding: 20px;
}

.mobile-blocker__text {
  color: white;
  font-family: "Exo 2", sans-serif;
  font-size: 1.5rem;
  text-align: center;
  max-width: 600px;
  line-height: 1.4;
}

@media (max-width: 1050px) {
  .mobile-blocker {
    display: flex;
  }
}
