body {
    margin: 0em;
    font-family: 'Roboto', sans-serif;
    background: url(../img/fondo.png)
}

* {
    box-sizing: border-box
}

.margen-interno {
    padding: 200px;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Poppins', sans-serif;
    font caret-color: aliceblue;
}

.sections {
display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    align-content: stretch;
}
.entre {

    align-self: auto;
    flex-direction: column;
}

.footer {

    display: flex;
    justify-content: center;
    margin-top: 00px;
}

.dos {
    margin-top: 150px;
    justify-content: flex-start;
    align-items: center;
    align-content: stretch;
}

/* aca arranca el condenado nav*/


.menu {
    background-color: blueviolet;
    height: 75px;
    width: 100vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px;
    color: #fff;
    box-shadow: 5px 0 10px rgba(0, 0, 0, .6);

}

.logo {
    color: aliceblue;
    font-size: 35px;
    padding: 0 80px;
    font-weight: bold;

}

.Menuitems {
    display: flex;
    list-style: none;
    margin-right: 30px;

}

.Menuitems li {
    border-radius: 3px;
    margin: 0 5px;

}

.Menuitems a {

    padding: 7px 13px;
    text-decoration: none;
    font-size: 18px;
    display: block;
    text-transform: uppercase;
    color: aliceblue;
}

.Menuitems li:hover,
li.active {
    background-color: darkmagenta;
    transition: .5s;
}

.btnmenu {
    margin-right: 30px;
    font-size: 25px;
    color: aliceblue;
    cursor: pointer;
    display: none;
}

ul.sow {
    top: 65px;
}

@media screen and (max-width: 900px) {
    .logo {
        font-size: 30px;
        padding-left: 45px;
    }

    .Menuitems li a {
        font-size: 16px;
    }
}

@media screen and (max-width: 800px) {
    .menu {
        height: 250px;
    }

    .btnmenu {
        display: inline-flex;
    }

    .Menuitems {
        position: fixed;
        width: 100%;
        left: 0;
        top: 70;
        padding: 20px 0;
        background-color:#544179;
        text-align: center;
        transition: all .6s;
        flex-direction: column;
       
            
    }

    .Menuitems li {
        margin: 15px 0 0 0;
        line-height: 15px;
    }

    .Menuitems li:hover {
        background: none;
    }

    .Menuitems li a {
        font-size: 15px;
        color:aliceblue;
        font-weight: bold;
    }

    .Menuitems li a:hover {
        color:darkgray;
    }

    

}
 
/* aca termina el condenado nav */