
.column1 {
    float: left;
    width: 30%;
    min-height: 400px; /* Should be removed. Only for demonstration */
    background-color: #fff;
  }

  .recording-elapsed-time {
        /*targeting Chrome & Safari*/
        display: -webkit-flex;
        /*targeting IE10*/
        display: -ms-flex;
        display: flex;
        justify-content: center;
        /*horizontal centering*/
        align-items: center;
    }
    .red-recording-dot {
        font-size: 25px;
        color: red;
        margin-right: 12px;
        /*transitions with Firefox, IE and Opera Support browser support*/
        animation-name: flashing-recording-dot;
        -webkit-animation-name: flashing-recording-dot;
        -moz-animation-name: flashing-recording-dot;
        -o-animation-name: flashing-recording-dot;
        animation-duration: 2s;
        -webkit-animation-duration: 2s;
        -moz-animation-duration: 2s;
        -o-animation-duration: 2s;
        animation-iteration-count: infinite;
        -webkit-animation-iteration-count: infinite;
        -moz-animation-iteration-count: infinite;
        -o-animation-iteration-count: infinite;
    }
    /* The animation code */
    @keyframes flashing-recording-dot {
        0% {
            opacity: 1;
        }
        50% {
            opacity: 0;
        }
        100% {
            opacity: 1;
        }
    }
    @-webkit-keyframes flashing-recording-dot {
        0% {
            opacity: 1;
        }
        50% {
            opacity: 0;
        }
        100% {
            opacity: 1;
        }
    }
    @-moz-keyframes flashing-recording-dot {
        0% {
            opacity: 1;
        }
        50% {
            opacity: 0;
        }
        100% {
            opacity: 1;
        }
    }
    @-o-keyframes flashing-recording-dot {
        0% {
            opacity: 1;
        }
        50% {
            opacity: 0;
        }
        100% {
            opacity: 1;
        }
    }
    .elapsed-time {
        font-size: 32px;
    }


  
  .column2 {
    float: left;
    width: 70%;
    min-height: 400px; /* Should be removed. Only for demonstration */
    background-color: #0f4da6;
  }
  
  /* Clear floats after the columns */
  .row:after {
    
    content: "";
    display: table;
    clear: both;
  }
  
  .row{
    margin-left: 10%;
    margin-right: 10%;
    margin-bottom: 3%;
    background-color: white;
  }
  /* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
  @media screen and (max-width: 600px) {
    .column1 {
      width: 100%;
    }
  }
  
  @media screen and (max-width: 600px) {
    .column2 {
      width: 100%;
    }
  }
  
  #imgInp {
    opacity: 0;
    position: absolute;
    z-index: -1;
  }

  label {
    cursor: pointer;
    /* Style as you please, it will become the visible UI component. */
    padding-left: 10%;
    padding-right: 10%;
    padding-top: 2%;
    padding-bottom: 2%;
    font-size: 100%;
    color: #fff;
    border-radius: 25px;
    background-color: #0f4da6;
    
  }

  #blah{
      max-width: 60%;
      max-height: 60%;
  }

  #image_div1{
    max-width: 70%;
      max-height: 70%;
  }

  #stop,#start{
    cursor: pointer;
    /* Style as you please, it will become the visible UI component. */
    padding-left: 10%;
    padding-right: 10%;
    padding-top: 2%;
    padding-bottom: 2%;
    font-size: 100%;
    color: #fff;
    border-radius: 25px;
    background-color: #0f4da6;
    margin-top: 10%;
  }