:root {
    --smaller: .75;
  }
  
  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  html, body {
    height: 100%;
    margin: 0;
  }
  
  body {
    align-items: center;
    background-color: #ffd54f;
    display: flex;
    font-family: -apple-system, 
      BlinkMacSystemFont, 
      "Segoe UI", 
      Roboto, 
      Oxygen-Sans, 
      Ubuntu, 
      Cantarell, 
      "Helvetica Neue", 
      sans-serif;
  }
  label.cameraButton {
    display: inline-block;
    margin: 1em 0;
  
    /* Styles to make it look like a button */
    padding: 0.5em;
    border: 2px solid #666;
    border-color: #EEE #CCC #CCC #EEE;
    background-color: #DDD;
  }
  
  /* Look like a clicked/depressed button */
  label.cameraButton:active {
    border-color: #CCC #EEE #EEE #CCC;
  }
  
  /* This is the part that actually hides the 'Choose file' text box for camera inputs */
  label.cameraButton input[accept*="camera"] {
    display: none;
  }
div.shadow {
    position:absolute;
    max-width:45%;
    max-height:45%;
    top:50%;
    left:50%;
    overflow:visible;
}
img.logo {
    position:relative;
    max-width:100%;
    max-height:100%;
    margin-top:-50%;
    margin-left:-50%;
}
#container_upload{
    width:500px;
    height:100%;
    margin:0 auto;
    border: 1px solid #f1f1f1;
    background: #fff;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2), 0 5px 5px 0 rgba(0, 0, 0, 0.24);
   }
   #container_upload p {
    width:90%;
    margin:auto;
    padding-top:10px;
    text-align: justify;
   }
#container{
    width:400px;
    margin:0 auto;
    margin-top:5%;
    border: 1px solid #f1f1f1;
    background: #fff;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2), 0 5px 5px 0 rgba(0, 0, 0, 0.24);
   }
   /* Bordered form */
   form {
    width:100%;
    padding: 30px;
    
   }
   #container h1{
    width: 38%;
    margin: 0 auto;
    padding-bottom: 10px;
   }
   
   /* Full-width inputs */
   input[type=text], input[type=password] {
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    box-sizing: border-box;
   }
   
   /* Set a style for all buttons */
   input[type=submit] {
    background-color: #FFC639;
    color: white;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    cursor: pointer;
    width: 100%;
   }
   input[type=submit]:hover {
    background-color: black;
    color: #FFC639;
    border: 1px solid #FFC639;
   }
   #my_camera
   {
    width:90%;
    min-width: 200px;
    height:90%;
    min-height:200px;
   }
   #container_upload form {
    padding:0;
   }
   #results img {
    width:90%;
   }
   @media only screen and (max-width: 600px) {

    #container_upload{
        margin-top:10px;
        text-align: justify;
        padding-left:10px;
        padding-top:10px;
        width:90%;
        height:100%;
        margin:0 auto;
        border: 1px solid #f1f1f1;
        background: #fff;
        box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2), 0 5px 5px 0 rgba(0, 0, 0, 0.24);
       }
       #container_upload p {
        width:90%;
        margin:auto;
        font-size:10pt;
       }
  }