* {
    margin: 0;
    padding: 0;
    border: 0;
    outline: none;
    box-sizing: border-box;
}


body {
  font-family: "montserrat", "trebuchet ms", helvetica, arial, sans-serif;
  width: 100%;
  padding: 0px;
  margin: 0px;
  background-color: #4a4756;
  font-family: montserrat;
}



#logo {
    display: block;
    width: 5em;
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
}

header{
    background-color: #3e3e3e;
}


.material-icons {
    padding-right: .25em;
}

h3,
h4,
.subir {
    display: flex;
    align-items: center;
}


.contenedor {
    max-width: 60rem;
    margin: 0 auto;
    padding: 1em;
}

header .contenedor {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header nav {
    color: white;
    
    
}

header nav a {
    color: #e8e8e8;
    padding: .5em 1em;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

header nav a:hover {
    background-color: #07e096;
    color: #4a4756;
}

/* boton que llama al menu */
#llamamenu {
    background-color: #07e096;
    color: white;
    cursor: pointer;
    height: 2.5em;
    width: 2.5em;
    display: flex;
    position: relative;
    z-index: 9999;
    border-radius: 100%;    
}

#llamamenu:hover {
    background-color: #07e096;
}

#llamamenu i { 
    padding: 0;
    /* centrado en la horizontal y en la vertical */
    margin: auto;
}

header nav ul {
    background-color: #3e3e3e;
    position: fixed;
    left: 100%;
    top: 0;
    height: 45vh;
    width: 50%;
    z-index: 9990;
    padding-top: 5em;
    transition: all .5s ease;
}

.visible {
    left: 50%;
    transition: all .25s ease;
}


.contenedor_titulo_inscripcion {
    max-width: 60rem;
    margin: 0 auto;
    padding: 0.5em;
    padding-top: 3em;
}


.titulo_inscripcion {
    display: flex;
    color: #04d924;
    font-weight: 900;
    font-size: 28pt;
    text-align: left;
    align-items: center;
    justify-content: center;
}

.contenedor_texto_inscripcion {
    width: 60vw;
    font-size: 1em;
    display: flex;
    justify-content: center;
    margin: auto;
    margin-bottom: 3em;
}

.contenedor_texto_inscripcion p {
    text-align: center;
    color: #e8e8e8;
}


form {
  margin: 0 auto;
  width: 80vw;
  padding: 1em 0 0 0;
  max-width: 400px;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

form li + li {
  margin-top: 1em;
}

label {
  display: inline-block;
  text-align: right;
  color: #04d924;
    font-family: sans-serif;
    font-size: 1.10em;
}

input {
  font: 1em sans-serif;
  width: 100%;
  height: 2em;
  box-sizing: border-box;
  border: 1px solid #04d924;
  background-color: #e8e8e8;
}

input:focus {
    border-color: #04d924;
}

.button{
    display: flex;
    justify-content: center;
    margin-top: 3em;
    background-image: url("../imagenes/plantas.png");
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: 0% 100%
}
.boton {
  background-color: #07e096;
  font-family: sans-serif;
  font-size: 1.3em;
  width: 10em;
  height: 2.5em;
  text-align: center;
  display: inline-block;
  border-radius: 10px;
  margin-bottom: 2.5em;
}

.boton a {
    text-decoration: none;
    color: #e8e8e8;
}

footer{
    background: #07e096;
    padding-bottom: 5px;
}

.contenidos {
    display: flex;
    justify-content: center;
    font-weight: 400;
    align-content: center;
    text-align: center;
    font-size: 0.6em;
    color: #4a4756;  
    margin: 0 auto;
    margin-bottom: 15px;

}

.info {
    font-weight: 100;
    align-items: center;
    text-align: center;
    font-size: 0.6em;
    margin-top: 20px;
}


@media (min-width: 45em) {
    
    #llamamenu {
        display: none;
    }
    
    /* se muestran el menu horizontal */
    header nav ul {
        display: flex;
        flex-wrap: nowrap;
        
        /* para que el menú vuelva al "fondo" */
        position: relative;
        top: auto;
        left: auto;
        height: auto;
        width: 100%;
        padding-top: 0;
        
    }
    
    header nav ul.visible {
        left: auto;
    }

}

    
@media (min-width: 50em) {

@media (min-width: 75em) {

.button{
    background-image: url("../imagenes/plantas.png");
    background-size: 90%;
    background-position:15% 92% ; 
    background-repeat: repeat-y;
 }

    .contenidos{
        position: relative;
        width: 73vw;
    }

