video{
	max-width:100%;
}

button{
	display: inline;
}


#predict{
	display: none;
}

#main{
	background-color:white;
	border-radius: 4px;
	border: 3px black solid;
	margin:auto;
	max-width: 800px;
	padding: 1em;
	text-align: center;
}

h5{
	margin:0;
}

/* this is the code to flip the web camera when I access the website - Originally thought it was gonna be in javascript but guess not*/

video {
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}


nav{
        text-decoration: none !important;
    text-align: center;
    color: BLACK;
    background-color: white; 
    padding: 25px; 
    border: 2px;
    margin: 20px;
}
/*

nav{
    text-align: center;
    padding: 20px;
    background-color: #f0f0f0;
    margin-bottom: 20px;
    border: 2px solid #ccc;
}

nav a {
    margin: 10px;
    padding: 15px 25px;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
    font-weight: bold;
    font-size: 16px;
}