@import url('https://fonts.cdnfonts.com/css/akrobat');

*, html{
	margin: 0px;
	padding: 0px;
	box-sizing: border-box;
}
body{
	background-color: #ffffff;
}
html, body {
    height: 100%;
    margin: 0;
}
header, section, footer{
    width: 100%;
    padding: 0 10%;
    justify-content: center;
}
H1{
    font-family: 'Akrobat Bold', sans-serif;
    font-size: 80px;
    font-weight: 700;
    color: #7A7A7A;
    display: block;
    text-align: center;
    width: 100%;
}
H2 {
    font-family: 'Akrobat Bold', sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: #7A7A7A;
    display: block;
    text-align: center;
}
.flex, .contenedor{
    display: flex; 
    align-items: center;
    align-content: center;
    justify-content: center;
    flex-wrap: wrap;
}
.boton{
    width: 80%;
    border-radius: 5px;
    margin: 20px;
    padding: 20px;
    background-color: #e4007d;
    border: 1px solid #e4007d;
}
    .boton p{
        font-family: 'Akrobat Bold', sans-serif;
        font-size: 20px;
        line-height: 30px;
        color: #ffffff;
    }
.c100 {
    width: 100%;
}
.l_form {
    display: block;
    width: 100%;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    padding: 10px 13px;
}
/*inputs*/
form{
    width: 80%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
input[type="text"], input[type="file"]{
    width: 100%;
    height: 35px;
    font-family: 'Roboto', sans-serif;
    font-size: 13px;
    color: #e4007d;
    font-weight: bold;
    background: #fff;
    padding-left: 10px;
    border-radius: 5px;
    border: 1px solid #e4007d;
}
textarea{
    font-family: 'Roboto', sans-serif;
    font-size: 13px;
    color: #e4007d;
    width: 100%;
    border: 1px solid #e4007d;
}
input[type="submit"]{
    width: 100%;
    border-radius: 5px;
    padding: 20px;
    background-color: #e4007d;
    border: 1px solid #e4007d;
    color: #fff;
    font-size: 20px;
    letter-spacing:1rem;
    margin-top: 1.5rem;
}

