

* {
      box-sizing: border-box;
    }
  *{
      font-family: 'Roboto', sans-serif;
    }
    .column {
      flex: 50%;
      padding: 20px;

      }
    /* Clear floats after the columns */
    .row {
      display: flex;
      flex-wrap: wrap;
    }

    /* On screens that are 992px wide or less, go from four columns to two columns */
    @media screen and (max-width: 992px) {
      .column {
        width: 100%;
      }
    }

    /* On screens that are 600px wide or less, make the columns stack on top of each other instead of next to each other */
    @media screen and (max-width: 800px) {
     .row {
            flex-direction: column;
      }
    }
	.container {
                margin: 20px;
            	background:#f7f9fb;

          }
 	.center {
		display:grid;
          	place-items:center;
        }
        
	.center_text{
          	text-align:center;
        }

	input[type="button"]{ 
      		background-color:#FFF319;color:black;width:150px; border: 2px solid black;padding:15px; font-weight: bold;margin-bottom: 25px;
    	} 
    	
	button { 
      		background-color:#FFF319;color:black;width:150px; border: 2px solid black;padding:15px;font-weight: bold;margin-bottom: 25px;
  	}

	input[type="button"]:hover {
   		font-weight: bolder;
		background-color:#ffffff;
	}
	
	button:hover{
		text-decoration:underline;
	}
	
	input[type=submit] {
  		background-color:#FFF319;
              	color:black;
              	width:150px; 
              	border: 2px solid black;
              	padding:15px; 
              	margin-left:40%;
	      	font-weight: bold;
              	float: left;
	}
	input[type="submit"]:hover{
		text-decoration:underline;
	}


