/* GENERAL */
*{
    margin: 0;
    padding: 0;
    background-color: #000000;
    align-items: center;
    font-family: 'Ubuntu', 'Verdana', sans-serif;
    color: white;
    box-sizing: border-box;
    position: relative;
    justify-content: center;
}

/* HEADER */
#header {
    background-color: #000000;
    padding: 1em;
    display: flex;
    justify-content: space-around;
}
#header .list-header {
    display: flex;
}
#header .list-header a {
    padding: 1em;
    text-decoration: none;
}
#header .title {
    font-size: 2em;
    font-weight: bold;
    font-style: italic;
    text-decoration: none;
}

/* MAIN */
#main {
    display: flex;
    height: 83vh;
    width: 100vw;
    align-items: center;
}

/* #presentacion */
#main #presentacion {
    display: block;
}
#main #presentacion .titulo {
    text-align: center;
    font-size: 1.5em;
}
#main #presentacion .menu-paginas {
    display: flex;
    justify-content: space-around;
}
#main #presentacion .menu-paginas a {
    text-decoration: none;
    align-items: center;
    text-align: center;
}
#main #presentacion .menu-paginas .icono div img {
    max-width:70%;
    max-height:70%;
}

/* #formacion */
#main #formacion {
    display: none;
}

/* #experiencia */
#main #experiencia {
    display: none;
}

/* #proyectos */
#main #proyectos {
    display: none;
}

/* #contacto */
#main #contacto {
    display: none;
}

/* FOOTER */
#footer {
    display: flex;
    justify-content: space-around;
}
#footer .lista-redes {
    display: flex;
}
#footer .lista-redes .icono-redes img {
    max-width: 30px;
    max-height: 30px;
    margin: auto 0.5em;
}
#footer div p {
    text-align: right;
}

/* ---------- DISEÑOS AUXILIARES ---------- */
.no-creada {
    display: flex;
    flex-direction: column;
    width: 70vh;
    height: 50vh;
    text-align: center
};