.menu {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
    font-size: 1.5em;
    position: relative;
    top: 0;
    z-index: 0;
}

.menu a:hover {
    transform: scale(1.1);
}

.menu a {
    color: #3C4142;
    text-decoration: none;
    margin: 20px;
    padding: 5vh;
    height: 8vw;
    width: 8vw;
    text-align: center;
    transition: transform 0.3s ease-in-out 0s;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.menu a img {
    height: 130%;
    flex-grow: 1;
}

body {
    background-color: white;
    min-height: 100vh;
}

.menu {
    width: auto;
}

.sticky a img {
    height: 1.5em;
    width: 1.5em;
    flex-grow: 0;
}

.sticky a span {
    display: none;
}

.sticky a {
    height: auto;
    width: auto;
    padding: .5em;
}

.sticky {
    min-height: 0;
}

.descripcion {
    color: #3C4142;
    border: 20px solid #EDC8FF;
    margin: 10px 40px;
    margin-bottom: 25px!important;
    font-size: .8em;
    padding: 10px;
    box-shadow: 0 0 10px black;
    z-index: 2;
}

.descripcion b {
    font-size: 1.2em;
}

.descripcion p {
    padding: 0 10%;
}

.descripcion {
    text-align: center;
    font-size: 2em;
}

.descripcion h1 {
    position: relative;
    margin-block-start: 0em; margin-block-end: 0em; }

.titulo {
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: linear-gradient(to bottom, #cefdce, #90b190);
    font-size: 6em;
    text-shadow: 3px 3px 10px green;
    color: white;
    font-weight: bold;
}

.sticky {
    position: sticky;
    top: 0;
    background-color: rgba(0,0,0,.3);
}

.descBot a:hover {
    background-color: skyblue;
}

.descBot, .descBot a {
    margin-top: 1em;
    display: flex;
    flex-direction: column;
}

.descBot {
    background-color: rgba(255,255,255,.7);
    padding: 1em 10vh;
}

/*Media querys*/
@media only screen and (max-width: 768px) {
    .menu a span {
        display: none;
    }

    .menu a {
        padding: 0;
    }

    .menu {
        justify-content: space-around;
    }
    .descripcion {
        margin: 0;
    }
    .descripcion h1{
    	font-size: 10vw;
    }
    .descripcion p{
    	font-size: 8vw;
        padding: 0!important;
    }
}