.temp {
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  color: white;
}

.temp p {
  font-size: 13px;
  text-align: center;
}

@media (max-width: 900px) {
  .only-pc {
    display: none;
  }
}

@media (min-width: 901px) {
  .only-m {
    display: none;
  }
}