
* {
    box-sizing: border-box;
}

input[type=text], select, textarea {
    width: 20%;
    padding: 12px;
    border: 2px solid red;
    border-radius: 4px;
    resize: vertical;
	font-family: Sans-serif;
	font-size: 10px;
}





.container {
    border-radius: 5px;
    background-color: white;
    padding: 10px;
	

    float: auto;
    width: 530px;
    height: auto;
    margin: 0px;
    border: 3px solid blue;
	

}

	
.col-25 {
    float: left;
    width: 25%;
    margin-top: 6px;
	
}

.col-75 {
    float: left;
    width: 75%;
    margin-top: 6px;
	border: none;
}

/* Clear floats after the columns */
.row:after {
    content: "";
    display: table;
    clear: both;
}

p1{
	font-family: Century Gothic;
	width: 100%;
	text-align: center;
	margin-top: 20px;
	margin-bottom:1px;
	font-size: 25px;
	color:green;
}



p2{
	font-family: Century Gothic;
	width: 100%;
	text-align: center;
	margin-top: 20px;
	margin-bottom:1px;
	font-size: 25px;
	color:red;
}

h{
	font-family: Square721 BT;
	width: 100%;
	text-align: center;
	margin-top: 20px;
	margin-bottom:1px;
	font-size: 25px;
	color:red;
}

button[type=reset] {
	
    background-color: #4CAF50; /* Green */
    border: none;
    color: white;
    padding: 16px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    -webkit-transition-duration: 0.4s; /* Safari */
    transition-duration: 0.4s;
    cursor: pointer;
	border-radius: 8px;
	float:left;
	
	background-color: white;
    color: black;
    border: 2px solid #e7e7e7;
		
}

button[type=reset]:hover {
	 
    background-color: #e7e7e7;
}


label {
    padding: 12px 12px 12px 0;
    display: inline-block;
	font-family: Sans-serif;
	font-size: 19px;
}

input[type=button] {
	
    background-color: #4CAF50; /* Green */
    border: none;
    color: white;
    padding: 16px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    -webkit-transition-duration: 0.4s; /* Safari */
    transition-duration: 0.4s;
    cursor: pointer;
	border-radius: 8px;
	float:left;

	 background-color: white;
    color: black;
    border: 2px solid #555555;
	
		
}

input[type=button]:hover {
	 
    background-color: #555555;
    color: white;
}

/* 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,input[type=submit],button[type=reset] {
        width: 100%;
        margin-top: 0;
    }
}