/*  NAVEGACION PRESENTACION */

html {
    font-family: "Space Mono", serif;
    font-weight: 400;
    font-style: normal;
}

.navegacion-presentacion {
    margin: 5px auto;
}

.navegacion-presentacion A {
    text-decoration: none;
    font-size: 15px;
    display: flex;
    text-align: center;
    justify-content: center;
    color: white;
    background-color: black;
}

.contenedor {
    margin: 0 auto;
    max-width: 1200px;
}

.contacto {
    text-align: center;
}

h1 {
    font-size: 50px;
    text-align: center;
}

h2 {
    text-align: center;
    text-transform: uppercase;
    border-bottom: 1px solid black;
    padding-bottom: 3px;
}

p {
    font-size: 20px;
}

li {
    font-size: 20px;
    margin-left: 2px;
    @media (min-width: 768px) {
        margin-left: 2rem;
    }
}

header {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-bottom: 3rem;
}

header img {
    width: 250px;
    height: 250px;
    border-radius: 2px;
    border-color: black;
    padding: 1rem;
}

section {
    @media (min-width: 768px) {
        margin-left: 1rem;
        margin-right: 1rem;
    }
    margin-bottom: 3rem;
}


/* Contenedor de TAGs*/

.contenedor-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
}

.section-tag {
    display: none;
    @media (min-width: 768px) {
        display: inline;
    }
}

.contenedor-tags div {
    padding-left: 2rem;
    padding-right: 2rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    border: 1px solid black;
    margin: 5px;
}

button {
    margin: 5rem auto;
    display: flex;
}