html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
}

body {
  background: url("https://cdn.videsk.io/virtual-background/64c1363aab37d4dfdd9a0f8a/ce068200-1dc7-4102-8b11-e03674fb2080.png")
    no-repeat center / cover;
}

@media only screen and (min-width: 600px) {
  body {
    background: url("desktop.png") no-repeat center / cover;
  }
}

* {
  font-family: sans-serif;
}

.omni {
  position: absolute;
  background: url("https://cdn.videsk.io/virtual-background/64c1363aab37d4dfdd9a0f8a/886e2168-9097-4733-a573-4ccdc997ffdb.png")
      no-repeat center / 70%,
    #ffffff;
  width: 5rem;
  height: 2rem;
  right: 0;
  top: 1rem;
  border-radius: 99px 0 0 99px;
}

.agorex {
  position: absolute;
  background: url("agorex-logo.png") no-repeat center / contain;
  width: 3rem;
  height: 4rem;
  left: 1rem;
  top: 0;
}

button {
  all: unset;
  position: absolute;
  bottom: 5dvh;
  margin-left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-items: center;
  animation: beat .5s infinite alternate;
}

button span {
  width: 3rem;
  height: 3rem;
  border-radius: 100%;
  background: url("./phone.svg") no-repeat center / 50%, #94e437;
  margin-right: 0.5rem;
}

button p {
  background: #94e437;
  height: 3rem;
  padding: 0 1rem;
  font-size: 1.3rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-items: center;
  color: white;
  border-radius: 99px;
}

.videsk-button-iframe {
  display: none;
}

@keyframes beat{
	to { transform: translateX(-50%) scale(1.4); }
}