
.phone {
  height: 50px;
  width: 100px;
  border: 3px solid white;
  border-radius: 10px;
  animation: rotate 1.5s ease-in-out infinite alternate;
  display: none;
  z-index: 10000;
}

.message {
  color: white;
  font-size: 1em;
  margin-top: 40px;
  display: none;
  z-index: 10000;
  background: black;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg)
  }
  50% {
    transform: rotate(-90deg)
  }
  100% {
    transform: rotate(-90deg)
  }
}

@media only screen and (max-width: 1125px) and (orientation: portrait) {
  .phone, .message {
    display: block;
  }
  .enter-site{
    display: none;
  }
}
