
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
html,
body {
  height: 100%;
  font-family: "Montserrat", sans-serif;
	overflow: hidden;
  background-color: black;
  color: aliceblue;
  text-align: center;
}

.logo{
  height: 100px;
  top:30%;
  left:30%;
  padding:1%
}

.social-icon{
  height: 25px;
  padding:5%;
  filter:invert()
}

.container {
    display: flex; /* Use flexbox for layout */
    height: 100%; /* Fill the height of its parent */
}
.left{
  flex: 1; /* Take up half of the container */
  display: flex; /* Nested flexbox for centering Firebase UI */
  vertical-align: auto;
  justify-content: center;
  align-items: center;
}


.right {
    flex: 1; /* Take up half of the container */
    display: flex; /* Nested flexbox for centering Firebase UI */
    justify-content: center;
    align-items: center;
}
#canvas3d {
    width: 100%;
    height: 100%;
}



