.dropdown-content {
    background-color: #FFFFFF;
    margin: 0;
    display: none;
    min-width: 200px; /* Changed this to accomodate content width */
    max-height: auto;
    margin-left: -1px; /* Add this to keep dropdown in line with edge of navbar */
    overflow: hidden; /* Changed this from overflow-y:auto; to overflow:hidden; */
    opacity: 0;
    position: absolute;
    white-space: nowrap;
    z-index: 1;
    will-change: width, height;
}

/* CODIGO PARA PONER EL FOOTER AL PIE*/
body {
     display: flex;
     min-height: 100vh;
     flex-direction: column;
}
main {
     flex: 1 0 auto;
}

html {
    font-family: GillSans, Calibri, Trebuchet, sans-serif;
    font-size: 20px;
  }


/* FIN CODIGO PARA PONER EL FOOTER AL PIE*/
