table {
  border: 1px solid #ccc;
  border-collapse: collapse;
  margin-left:30px;
  margin-right:30px !important;
  width: 96%;
  float:center;
}

table caption {
  font-size: 1.5em;
  margin: .5em 0 .75em;
}

table tr {
  background-color: #f8f8f8;
  border: 1px solid #ddd;
}

table td {
  padding: .625em;
  text-align: center;
}


@media screen and (max-width: 600px) {
  table {
    border: 0;
  }

  table caption {
    font-size: 1.3em;
  }
  
   
  table tr {
    border-bottom: 3px solid #ddd;
    display: block;
     }
  
  table td {
    border-bottom: 1px solid #ddd;
    display: block;
    font-size: .8em;
    text-align: right;
  }
  
  table td::before {
    /*
    * aria-label has no advantage, it won't be read inside a table
    content: attr(aria-label);
    */
    content: attr(data-label);
    float: left;
    font-weight: bold;
    text-transform: uppercase;
  }
  
  table td:last-child {
    border-bottom: 0;
	text-align:center;
  }
}

.shapes {
shape-outside: circle(50%);
-webkit-clip-path:circle(50%);
  width: 100px;
  height: 100px;
  float: left;
}
#output_image
{
 max-width:150px;
 max-height:150px;
}

		.blink{
		padding: 15px;	
		text-align: center;
		line-height: 50px;
	}
	span#mytext{
		font-size: 40px;
		font-family: cursive;
		color: magenta;
		animation: blink 1s linear infinite;
	}
@keyframes blink{
0%{opacity: 0;}
50%{opacity: .5;}
100%{opacity: 1;}
}
 p{
   margin-left:15px;
   margin-right:15px;
   }
   
  
 .btn1{
    position: relative;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    background-color: #4CAF50;
    color: white;
    font-size: 16px;
	font-weight:bold;
    cursor: pointer;
    text-align: center;
	margin:20px 50px 0 0px!important;
	
}

.btn1:hover {
    background-color:#4CAF50;
}


input[type=text], select, textarea {
    width: 80%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    resize: vertical;
}

label {
    padding: 12px 12px 12px 0;
    display: inline-block;
}

input[type=submit] {
    background-color: #4CAF50;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    float: center;
}

input[type=submit]:hover {
    background-color: #45a049;
	
}

.containeer {
    border-radius: 5px;
    background-color: #f2f2f2;
    padding: 20px 0 3px 100px;
}

.col-25 {
    float: left;
    width: 25%;
    margin-top: 6px;
}

.col-75 {
    float: left;
    width: 50%;
    margin-top: 6px;
	margin-right:30px;
}

/* Clear floats after the columns */
.row:after {
    content: "";
    display: table;
    clear: both;
}

/* Responsive layout - when the screen is less than 600px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
    .col-25, .col-75{
        width: 100%;
        margin-top: 0;
    }
	input[type=submit]{
	    width: 40%;
        margin-top: 0;
	}
}

#button1 {
  padding: 10px 20px;
  font-size: 24px;
  text-align: center;
  cursor: pointer;
  outline: none;
  color: #fff;
  background: #4CAF50;
  border: none;
  border-radius: 15px;
  box-shadow: 0 2px #999;
}

#button1:hover {background: blue;}

#button1:active {
  background-color: blue;
  box-shadow: 0 5px #666;
  transform: translateY(4px);
}

#button2 {
  padding: 5px 10px;
  font-size: 20px;
  text-align: center;
  cursor: pointer;
  outline: none;
  color: #fff;
  background: #800080;
  border: none;
  border-radius: 10px;
  box-shadow: 0 2px #999;
}

#button2:hover {background: blue;}

#button2:active {
  background-color: blue;
  box-shadow: 0 5px #666;
  transform: translateY(4px);
}