* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    list-style: none;
    text-decoration: none;
}

body {
    display: table-row-group;
    flex-flow:column;
    justify-content: space-between;
    min-height: 100vh;
    font-family: 'Ubuntu', 'Arial', sans-serif;
    font-weight: 300;
    background-color: deeppink
}

h1 {font-size: 2.5em;}


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

}
/*// Header //*/

header {
    width: 100vw;
    color: white;
    padding: .75em 1em;
}

#logo-palabra {
    display: inline-block;
    font-family: monospace,cursive,sans-serif;
    font-weight: 700;
    font-size: 1.9em;
    transition: transform .25s ease;
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-flow: wrap;
}

nav ul {
    display: flex;
}

nav ul li,
nav ul span {
    display: inline-block;
    padding-left: 2em;
}

nav ul li a {
    color: white;
    font-family: monospace,'Arial', sans-serif;
    font-size: 1em;
    transition: all .25s ease;
}

nav ul li a:hover {
    color: antiquewhite;
}

a{text-decoration: none; color: inherit}

button.accordion {
    font-family: cursive, monospace, sans-serif;
    font-size: 13pt;
    font-weight: 900;
    background-color: deeppink;
    color: white;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    transition: 0.4s;
}

button.accordion.active, button.accordion:hover {
    background-color: darkmagenta;
}

div.panel {
    margin: .1em;
    padding: 1.5rem;
    font-family: 'Raleway',sans-serif;
    font-size: 11pt;
    background-color: deeppink;
    display: none;
}
p{
    display: inline-flex;
    flex-direction: column;
}

/*// Contenido //*/

main {
    display: flex;
    flex-flow: column;
    justify-content: space-around;
    align-items: center;
    flex: 1;
    height: 100%;
}

section {
    display: flex;
    flex: 1;
    align-items: center;
    width: 100vw;
    padding: 2em;
}

/* Introducción */

.intro {
    flex-flow: column;
    justify-content: center;
    max-width: 600;
}

.app {
    border-radius:none;
    width: 500px;
}

.intro{
    font-size: 1em;
    padding-top: 2em;
    text-align-last: center;
}

h1 {
    font-family: cursive, monospace, sans-serif;
    color: white;
    margin-bottom: .1em;
}


/*// Footer //*/

footer {
    display: flex;
    font-size: 12px;
    font-weight: 100;
    text-align:center;
    flex-flow: column;
    justify-content: center;
    color: white;
    padding: 2em;
}
footer p {
    font-size: 1em;
    padding:  .8em;
}


/*// Menú dispositivos móviles //*/

#menu-toggle {display: none;}

.hamburger-toggle {display: none;}

@media screen and (max-width: 860px) {
    
    #logo-palabra {
    font-size: 1.25em;
}
    
    nav ul {
        display: block;
        max-height: 0;
        width: 100vw;
        overflow: hidden;
        text-align: center;
        transition: max-height .25s ease-in, padding-top .5s ease;
    }
    
    nav ul li {
        display: block;
        padding: 1em 0;
    }
    
    nav ul span {
        display: none;
    }
    
    #menu-toggle:checked ~ ul {
        max-height: 720px;
        padding-top: .75em;
    }
    
    .hamburger-toggle {
      background: linear-gradient(to bottom, darkgray 0%, darkgray 12%, transparent 12%, transparent 44%, darkgray 44%, darkgray 56%, transparent 56%, transparent 88%, darkgray 88%, darkgray100%); /*Lineas botón*/
      cursor: pointer;
      display: block;
      float: right;
      height: 1.25em;
      width: 1.25em;
    
    }
    
    header {
        display: block;
    }