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


.menu_button {
  position: fixed;
  z-index: 2;
  top: 0;
  cursor: pointer;
}


.nav_link {
  color:#303440;
  display: block;
  padding: 15px 0;
  text-decoration: none;
}

.nav_link-inside:hover {
  background: #f6f8fa;
}

.nav_link-inside {
  border-radius: 6px;
  padding-left: 20px;
}

.list {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  flex-direction: column;
  border-radius: 0 16px 16px 0;
  background: #fff;
}

.list_item {
  list-style: none;
  width: 100%;
  text-align: center;
  overflow: hidden;
}

.list_item-click {
  cursor: pointer;
}

.list_button {
  display: flex;
  align-items: center;
  gap: 1em;
  width: 70%;
  margin: 0 auto;
}

.arrow .list_arrow {
  transform: rotate(90deg);
}

.list_arrow {
  margin-left: auto;
  transition: transform .3s;
}

.list_show {
  width: 80%;
  margin-left: auto;
  border-left: 2px solid #303440;
  list-style: none;
  transition: height .4s;
  height: 0;
}
body {
    background-position: center;
    background-repeat: no-repeat;
    background-color: #000;
    color: #fff;
    margin: 0;
    border: 0;
    padding: 0;
    box-sizing: border-box;
}
p {
    color: white;
    font-size: 20px;
    font-family: "Sans-serif";
    text-align: justify;
    letter-spacing: 0.1em;
    width: 100%;
}


.field {
    color: #7de7d4;
    font-size: 1em;
    text-align: left;
    letter-spacing: 0;
}

fieldset {
    width: 75%;
}

.titulo {
  position: fixed;
  top: 0;
  margin-bottom: 20px;
  width: 100%;
  padding: 20px;
  background-color: #57575733;
}
.nav {
    position: fixed;
    width: 0;
    transition: width .4s;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: 1;
    background-color: #333; /* Añadido para visibilidad */
    overflow-x: hidden; /* Para evitar scroll horizontal */
}


span {
    font-weight: bold;
    color: #7de7d4;
}


a {
    pointer-events: auto;
}

/* Mostrar el contenido desplegable al pasar el mouse */
.sidebar .menu .dropdown:hover .dropdown-content {
    display: block;
}
.content {
    margin-top: 80px;
    margin-left: 0;
    margin-right: 0;
    padding: 20px;
    transition: margin-left .4s;
}

.neonText {
  color: #fff;
  text-shadow:
      0 0 7px #fff,
      0 0 10px #fff,
      0 0 21px #fff,
      0 0 42px #0fa,
      0 0 82px #0fa,
      0 0 92px #0fa,
      0 0 102px #0fa,
      0 0 151px #0fa;
}

h2 {
    color: grey;
    font-size: 30px;

}

.pulsate {
     animation: pulsate 1.5s infinite alternate;     
}

@keyframes pulsate {
  100% {
      text-shadow:
      0 0 4px #fff,
      0 0 11px #fff,
      0 0 19px #fff,
      0 0 40px #0fa,
      0 0 80px #0fa,
      0 0 90px #0fa,
      0 0 100px #0fa,
      0 0 150px #0fa;
  }
}
