html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  background: #1664b0;
  font-family: sans-serif;
  font-size: 20px;
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.logo {
  width: 100%;
  height: 200px;
  background: url("logo.png") no-repeat center center / 200px;
}

.background-video {
  width: 70%;
  height: calc(100% - 250px);
  background: url("video.gif") no-repeat center center / contain;
}

button {
  all: unset;
  transform: translateY(-50%);
  width: fit-content;
  padding: 1rem 2rem;
  border-radius: 99px;
  font-weight: bold;
  background: #5ec465;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

button::before {
  content: "";
  display: flex;
  width: 1rem;
  height: 1rem;
  background: url("camera-icon.png") no-repeat center center / contain;
  margin-right: 0.5rem;
}

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

.videsk-top-container {
  width: 100% !important;
  height: 100% !important;
  right: unset !important;
  left: 0 !important;
  bottom: unset !important;
  top: 0 !important;
  z-index: 9 !important;
}

.videsk-home-iframe {
  width: 100% !important;
  height: 100% !important;
  max-height: 100% !important;
}

vd-loader {
  display: none;
}

body.loading .background-video, body.loading button {
  display: none;
}

body.loading vd-loader{
  display: block;
}

@media screen and (max-width: 768px) {
  button {
    transform: translateY(-124%);
  }
}

@media screen and (max-width: 820px) and (min-width: 769px) {
  button {
    transform: translateY(-200%);
  }
}

@media screen and (max-width: 600px) {
  body {
    font-size: 16px;
  }

  button {
    padding: 0.5rem 1rem;
  }
}
