/* Escribe aquí tu código CSS */

h1 {
	font-size: 22px;
	font-family: poppins;
	text-decoration: none;
	margin: 0px 0px;
	margin-bottom: 0px;
}

a {
	font-family: poppins;
	font-size: 16px;
	margin: 0px 0px;
}

label {
	font-family: poppins;
	font-size: 16px;
	margin-bottom: 0px;
	font-weight: bold;
}

a {
  color: #333;
  text-decoration: none;
  font-family: poppins;
}

input[type=text], input[type=tel], input[type=email] {
	width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    box-sizing: border-box;
    border: 2px solid #ccc;
    border-radius: 4px;
}

textarea {
    width: 100%;
    height: 100px;
    padding: 12px 20px;
	  margin: 8px 0;
    box-sizing: border-box;
    border: 2px solid #ccc;
    border-radius: 4px;
    background-color: #f8f8f8;
    resize: none;
}

input[type=button], input[type=submit], input[type=reset] {
    background-color: #4CAF50;
    border: none;
    color: white;
    padding: 16px 32px;
    text-decoration: none;
    margin: 4px 2px;
    cursor: pointer;
    margin-top: 10px;
}

input[type=button]:hover, input[type=submit]:hover, input[type=reset]:hover {
    background-color: #333;
}

.btn{
	margin: 10px 0px;
	border-radius: 3px;
	text-decoration: none;
	box-shadow: 0 2px 2px;
}

.btn-red{
	font-family: poppins;
	text-align: center;
	font-size: 18px;
	display: block;
	line-height: 3.0;
	color: white;
	background-color: #1979a9;
}

.btn-red:hover{
	background-color: #44bcd8;
}
.btn-red:active{
	background-color: #042f66;
}