/* loaded in site/index.html */

:not(:defined) {
  border: 1px solid red;
}

.hero-columns {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  height: 100vh;
}



#nav-tabs-selector {
  position: fixed;
}


.phone {
  width: 25vw;/* or any desired width */
      aspect-ratio: 9 / 19.5;
      border: 5px solid var(--on-background-color);
      border-radius: 24px;
      position: relative;
      /* padding-top: 12%; set the desired padding for the top */
      box-sizing: border-box;
      overflow: hidden;
      /* transform: rotateY(-10deg); */
    }

    /* small screen */
@media (max-width: 600px) {
  .hero-columns {
    flex-direction: column;
  }
  .phone {
    width: 50vw;
  }
}
.phone:after {
  content: "";
  position: absolute;
  top: 1%;
  left: 50%;
  transform: translateX(-50%);
  width: 30%;
  height: 5%;
  border-radius: 20px;
  background: #000;
}

.phone-cycle {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.bg-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
}


.stack {
  position: relative;
  width: 100%;
  height: 100%;
}
.stack > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.phone-cycle {
  width: auto;
display: block;

}


