*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    overflow: hidden;
}



.sketchfab-embed-wrapper {
  position: fixed;
  top: -50%;
  left: -25%;
  width: 150%;
  height: 150%;
 

}
.sketchfab-embed-wrapper iframe {
  width: 100%;
  height: 150%;
  border: none;
}
  
 
  nav{
    background-color: grey;
    z-index: 10000000;
  }

  @keyframes slideIn {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(0);
    }
}

/* Define slide-out animation */
@keyframes slideOut {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}

/* Apply animation to content element */
.slide-in {
    animation: slideIn 1s forwards;
}

.slide-out {
    animation: slideOut 1s forwards;
}