 #rotate {
  z-index: 10000;
  background-color: #257ef2;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0px;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: white;
  overflow: hidden;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.phone {
  height: 50px;
  width: 100px;
  border: 3px solid white;
  border-radius: 10px;
  animation: rotate 1.5s ease-in-out infinite alternate;
  /* display: none; */
}

F.message {
  color: white;
  font-size: 1em;
  margin-top: 40px; */
  /* display: none; */
} 
 @keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(-90deg);
  }
  100% {
    transform: rotate(-90deg);
  }
} 

@media screen and (max-width: 1024px) {
  #rotate {
    display: flex !important;
  }
}
