@keyframes goHome {
  0% {
    top: 10vh;
    width: 25vw;
    height: 25vh;
    left: 45vw;
    background-color: unset;
    border: unset;
  }

  100% {
    top: 3rem;
    width: 32px;
    height: 32px;
    left: calc(100vw - 40px);
    background-color: midnightblue;
    border: 2px white solid;
    transform: translateY(-1px);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);

  }

}

a.site-action-button {
  position: fixed;
  top: 3rem;
  width: 32px;
  height: 32px;
  left: calc(100vw - 40px);
  z-index: 1000;
  border-radius: 6px 0 0 6px;
  padding: 2px 5px 2px 2px;
  background-color: midnightblue;
  border-bottom: 2px white solid;
  border-left: 2px white solid;
  border-top: 2px white solid;
  cursor: pointer;
}

body a.site-action-button {
  animation: goHome ease 2s;
}

img.site-action-button-img {
  width: 100%;
  height: auto;
}

.site-action-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.3);
}

.site-action-button:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.site-action-button:focus-visible {
  outline: 3px solid #93c5fd;
  outline-offset: 3px;
}

@media (max-width: 640px) {
  .site-action-button {
    /* top: 16px;
    right: 16px; */
    width: 16px;
    height: 16px;
  }
}

.gv-container {
  position: relative;
  width: 100%;
  height: 100vh;
  /* or your desired height */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.gv-icon {
  position: relative;
  width: 300px;
  /* adjust size */
  height: auto;
  z-index: 1;

  /* Make it prominent */
  transform: scale(1.2);
}