
* {
    padding: 0;
    margin: 0;
    font-family: sans-serif;
    box-sizing: border-box;
}


/*  This is for styling the main container that holds everything */

#containerGray {
    width: 100%;
    height: 100vh;
    position: relative;
    background: rgb(185, 185, 185);
}

/* This styles the 3D object inserted in the aside container */
#viewer model-viewer {
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    border: none;
}