/* reset styles */
*{
    box-sizing: border-box;
    margin:0;
    padding: 0;
}
/* close button */
p {
    position: fixed;
    font-size: 2rem;
    top: 4%;
    right:5%;
    z-index: 10;
    font-family: Arial, Helvetica, sans-serif;
}
#closeVR{
    z-index: 110;
    position: fixed;
    top: 4%;
    right:4%;
    width: 5vw;
    max-width: 30px;
    /* color: #301801; */
}
/* holds camera buttons */
nav{
    position: fixed;
    z-index: 100;
    left: 50%;
    bottom: 5%;
    transform: translateX(-50%);
    display: flex;
    flex-wrap: wrap;
}
/* manage flex-wrap for nav */
.nav-line{
    display: flex;
    flex-wrap: nowrap;
}
/* camera change buttons */
p.cam-toggle {
    position: relative;;
    margin: 5px;
    padding: 5px 8px;
    background-color: #ffffff65;
    border-radius: 10px;
    font-size: 1rem;
    width: 40vw;
    max-width: 100px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
/* 
#preloaderPage {
    position: fixed;
    top:0;
    left:0;
    background-color: white;
    width: 100vw;
    height: 100vh;
    z-index: 100;

    display: flex;
    justify-content: center;
    align-items: center;
} */