html, body {
  margin: 0;
  padding: 0;
  font-family:'Arial Narrow', Arial, sans-serif;
  font-style: italic;
}

nav {
  font-style: normal;
  position: absolute;
/*   width: 100%; */  
  top: 0;
  display: flex;
  flex-direction: row;
	flex-wrap: nowrap;
	justify-content: flex-end;
	align-items: stretch;
	align-content: stretch;
}

nav div {
  margin: .5em;
  padding: .2em;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.5);
}

canvas {
  display: block;
}

label {
  background-color: rgba(255,255,255,0.8);
}
.visuals > button {
  display:flex;
  flex-direction:row;
  justify-content:space-around;
  margin: 10px 0 10px 10px;
  
}

#cameras {
  margin: 10px 0 10px 10px;
}

#p5Canvas, #myCanvas {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  overflow-y: hidden;
  position: fixed;
  background-size: cover;
}

#cameras button {
  float: left;
}

.clear-both {
  clear: both;
}

.capture{
  display:flex;
  flex-direction:row;
  justify-content:flex-start;
  margin: 10px 0 10px 10px;
}

.capture a{
display: flex;    
justify-content: center;
align-content: center; 
/* width: 80px; */
height: 20px;
font-size: 15px;
color: #000;
text-decoration: none;
padding: 10px;
background-color:#fafafa;
border-style: solid; 
border-width: 1px;;  
}

.capture a:hover{
display: flex;  
justify-content: center;
align-content: center;   
background-color:#00ff6a;
}

#downloadLnk{
background-color:'yellow';  
}

#hello-world-app {
  padding: 50px;
  z-index: 3;
}


/* modal */

.modal-mask {
  position: fixed;
  z-index: 9998;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: table;
  transition: opacity 0.3s ease;
}

.modal-wrapper {
  display: table-cell;
  vertical-align: middle;
}

.modal-container {
  width: 300px;
  margin: 0px auto;
  padding: 20px 30px;
  background-color: #fff;
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.33);
  transition: all 0.3s ease;
  font-family: Helvetica, Arial, sans-serif;
}

.modal-header h3 {
  margin-top: 0;
}

.modal-body {
  margin: 20px 0;
}

.modal-footer {
  font-size: 0.8em;
}

.modal-default-button {
  float: right;
}

.modal-enter {
  opacity: 0;
}

.modal-leave-active {
  opacity: 0;
}

.modal-enter .modal-container,
.modal-leave-active .modal-container {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

#qrcode {
  display: none;
  position: absolute;
  z-index: 10;
  bottom: 50px;
  right: 50px;
  width: 300px;
}