body {
    margin: 0;
    padding: 0;
}

h1,h2,h3,h4,p,a,th,td {
    font-family: 'Roboto', sans-serif;
}


@media (max-width:700px) {

    .NavInicio{
        display: flex;
        justify-content: center;
        align-content: center;
        width: 100%;
        height: 100%;
    }

    nav {
        background: #212529;
        border-radius: 20px;
        border-top-right-radius: 0px;
        border-top-left-radius: 0px;
        margin-bottom: 5px;
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    header {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
    }

    nav ul {
        list-style-type: none;
    }

    nav ul li {
        padding: 10px 20px;
    }

    nav li a {
        font-weight: 500;
        font-size: 25px;
        color: #3FA535;
        text-decoration: none;
    }
    nav li a:hover {
        font-weight: 500;
        font-size: 25px;
        color: #3FA535;
        text-decoration: none;
        border-bottom: 1px solid #3FA535;
    }
}


@media (min-width:700px) {
    .NavInicio{
        display: flex;
        justify-content: space-around;
        flex-direction: row;
        width: 100%;
        height: 100%;
    }

    nav {
        background: #212529;
        border-radius: 20px;
        border-top-right-radius: 0px;
        border-top-left-radius: 0px;
        margin-bottom: 5px;
        width: 100%;
    }

    header {
        display: flex;
        justify-content: center;
        width: 100%;
    }

    nav ul {
        list-style-type: none;
        display: flex;
        justify-content: center;
    }

    nav ul li {
        padding: 10px 20px;
    }

    nav li a {
        font-weight: 500;
        font-size: 25px;
        color: #3FA535;
        text-decoration: none;
    }
    nav li a:hover {
        font-weight: 500;
        font-size: 25px;
        color: #3FA535;
        text-decoration: none;
        border-bottom: 1px solid #3FA535;
        padding: 2px;
    }
}