.bigScreen {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #77a1d3;
  background: -webkit-linear-gradient(to top, #e684ae, #79cbca, #77a1d3);
  background: linear-gradient(to top, #e684ae, #79cbca, #77a1d3);
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  color: white;
  font-size: 16px;
  text-align: center;
  padding: 0px 5px;
  display: none;
  z-index: 5;
  animation: fadeIn 0.1s ease-in-out forwards;
}

@media screen and (max-width: 400px) {
  .bigScreen {
    display: flex;
  }
}
