* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/*aqui le doy box a los elementos para ver su tamaño*/






  {
    border: 2px solid rgba(241, 196, 15, 1);
    border-radius: 5px;
}

html {
    font-size: 14px;
    background: linear-gradient(to bottom right, blue 5%, #a569bd, pink 80%);
    background-repeat: no-repeat;
    background-size: cover;
    font-family: 'luisMamon', Arial, Helvetica, sans-serif;
    max-width: 100vw;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 100%;
    margin: .5em 0em 0em 0em;
    overflow: scroll;
}

header {
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(165, 105, 189, 0.5);
    height: 5em;
    width: 90%;
    border-radius: 1em;
}

nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #7e5099;
    color: antiquewhite;
    height: 3em;
    margin-right: 1em;
    padding: .1em .5em;
    border-radius: 0.5em;
}

nav a {
    font-size: 1.5em;
}

.menuNav {
    display: none;
}

#menu {
    position: absolute;
    display: none;
    flex-direction: column;
    align-items: center;
    margin-top: 8.4em;
    list-style-type: none;
    background-color: #e2e2e2;
    border-radius: .2em;
    width: 90%;
    font-size: 3em;
}

#menu li {
    margin: 10px 0;
}

#menu a {
    color: #7e5099;
}

.logo {
    height: 3.5em;
    width: auto;
    margin-left: 0.5em;
}

.contenedorSiglas {
    height: 5em;
    margin-bottom: -1em;
}

.textoSiglas {
    display: block;
    color: antiquewhite;
    font-family: 'juanita';
    font-size: 3em;
}

.textoSiglas:hover {
    color: #e2e2e2;
}

a {
    text-decoration: none;
    color: #ebdef0;
}

footer {
    background-color: rgba(40, 55, 71, 1);
    width: 100%;
    height: 17em;
    color: rgba(201, 180, 222, 0.95);
    margin-top: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 1em;
}

.footerContainer {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    flex-wrap: wrap;
    align-items: flex-start;
    margin-top: 1em;
    height: 80%;
}

.logoFooter {
    height: 3em;
    width: auto;
    opacity: 0.8;
}

.footerContainer1 {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin: 0.5em 2em;
    font-size: 1em;
}

.footerContainer2 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 0.8em;
}

.footerContainer3 {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    margin-top: 0.6em;
}

.footerContainer4 {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footerContainer5 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: left;
    opacity: 1;
    width: 30%;
}

.footerContainer5 h4 {
    padding: 0.3em;
}

.footerContainer6 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 50%;
    width: 50%;
}

.footerContainer6 h4 {
    padding: 0.3em;
}

.footerContainer7 {
    height: 50%;
    width: 30%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.icon {
    height: 3em;
    width: auto;
    margin-left: 1em;
}

.footerContainer8 {
    display: flex;
    flex-direction: row;
    width: 16em;
    justify-content: space-between;
}

.footerContainer9 {
    display: flex;
    flex-direction: row;
    width: 16em;
    justify-content: space-between;
}

input {
    background-color: transparent;
    border-top: none;
    border-left: none;
    border-right: none;
    color: white;
}
input:placeholder-shown {
    border: solid 1px red;
}

.footerContainer10 {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}

button {
    background-color: transparent;
    color: rgba(201, 180, 222, 0.95);
    padding: 0.1em;
    border: 0.1em solid rgba(201, 180, 222, 0.95);
}
