.screen {
  display: none;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
}

@media (max-width: 1000px) {
  .screen {
    opacity: 1;
    position: fixed;
    left: 0;
    display: block;
    background-color: white;
    font-size: 50px;
    font-weight: 500;
    text-align: center;
    padding: 100px;
    color: black;
}
