header{
	position: fixed;
	width: 100vw;
	z-index: 999;
	background-color: white;
  box-shadow: 4px 4px 2px gray;
}

#menu, #menu1, #menu2, #menu3, #menu4, #menu5, #menu6 {
	transition: 0.4s;
}

#menu a, #menu1 a, #menu2 a, #menu3 a, #menu4 a, #menu5 a, #menu6 a{
	text-decoration: none;
	color: white;
}

#menu a:hover, #menu2 a:hover, #menu3 a:hover, #menu4 a:hover, #menu5 a:hover, #menu6 a:hover{
	color: var(--principal-color);
}

#menu4 i{
	color: var(--principal-color);
}

.piano-central {
	position: fixed;
	display: none;
	flex-direction: row;
	left: 42%;
	width: 280px;
	height: 60px;
	box-shadow: 2px 2px 2px gray;
	transition: 0.4s;
}

.piano-central .natural-n {
	height: 60px;
	width: 20px;
	border: 1px solid black;
	cursor: pointer;
}

.piano-central .natural-n:hover {
	background-color: #3da5ff;
}

.do-st, .re-st, .fa-st, .sol-st, .la-st, .do2-st, .re2-st, .fa2-st, .sol2-st, .la2-st  {
	position: absolute;
	height: 40px;
	width: 10px;
	background: rgb(0,0,0);
	background: linear-gradient(90deg, rgba(0,0,0,1) 0%, rgba(113,113,113,1) 52%, rgba(0,0,0,1) 100%);
	cursor: pointer;
	box-shadow: 2px 2px 2px gray;
}

.do-st{
	left: 14px;
}

.re-st{
	left: 34px;
}

.fa-st{
	left: 74px;
}

.sol-st{
	left: 94px;
}

.la-st{
	left: 114px;
}

.do2-st{
	left: 154px;
}

.re2-st{
	left: 174px;
}

.fa2-st{
	left: 214px;
}

.sol2-st{
	left: 232px;
}

.la2-st{
	left: 252px;
}

.menu {
	position: fixed;
	z-index: 999;
	width: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	height: 65px;
	box-shadow: 2px 2px 2px gray;
}

.menu ul {
	margin: 0px;
}

.menu ul li{
	display: inline;
	float: left;
	padding: 20px;
	color: white;
}

.menu ul li:not(:first-child) {
    float: right;
}

.menu ul li:first-child {
	font-size: 40px;
	padding-top: 5px;
	font-family: 'Dancing Script', cursive;
}

.menu ul li:first-child i{
	color: var(--principal-color);
}

/********************************/



@media only screen and (max-width: 590px) {

    header {
      height: 65px;
    }

    .nav-mobile {
      background-color: #1E1E23;
      height: 65px;
    }

    .imagen-nav{
      position: absolute;
      top: 10px;
      width: 250px;
      height: auto;
      left: 70px;
    }

  .hs-logo {
    display: block;
    color: black;
    text-align: center;
    margin: 0px;
    text-decoration: none;
  }

    #menuToggle {
      display: flex;
      flex-direction: column;
      position: relative;
      top: 25px;
      left: 25px;
      z-index: 1;
      -webkit-user-select: none;
      user-select: none;
    }

    #menuToggle input
    {
      display: flex;
      width: 40px;
      height: 32px;
      position: absolute;
      cursor: pointer;
      opacity: 0;
      z-index: 2;
    }

    #menuToggle span
    {
      display: flex;
      width: 29px;
      height: 2px;
      margin-bottom: 5px;
      position: relative;
      background: #ffffff;
      border-radius: 3px;
      z-index: 1;
      transform-origin: 5px 0px;
      transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
                  background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
                  opacity 0.55s ease;
    }

    #menuToggle span:first-child
    {
      transform-origin: 0% 0%;
    }

    #menuToggle span:nth-last-child(2)
    {
      transform-origin: 0% 100%;
    }

    #menuToggle input:checked ~ span
    {
      opacity: 1;
      transform: rotate(45deg) translate(-3px, -1px);
      background: #36383F;
    }
    #menuToggle input:checked ~ span:nth-last-child(3)
    {
      opacity: 0;
      transform: rotate(0deg) scale(0.2, 0.2);
    }

    #menuToggle input:checked ~ span:nth-last-child(2)
    {
      transform: rotate(-45deg) translate(0, -1px);
    }

    #menu-mobile
    {
      position: absolute;
      width: 180px;
      height: 550px;
      box-shadow: 0 0 10px #85888C;
      margin: -50px 0 0 -50px;
      padding: 50px;
      padding-top: 125px;
      background-color: #F5F6FA;
      -webkit-font-smoothing: antialiased;
      transform-origin: 0% 0%;
      transform: translate(-100%, 0);
      transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
    }

    #menu-mobile li
    {
      padding: 10px 0;
      transition-delay: 2s;
    }

    #menuToggle input:checked ~ ul
    {
      transform: none;
    }

    #menu-mobile a {
      text-decoration: none;
      color: #1E1E23;
      opacity:1;
      font-family: 'Alegreya Sans', sans-serif;
      font-size: 1.5em;
      font-weight: 400;
      transition: 200ms;
    }
    #menu-mobile a:hover {
      opacity:0.5;
    }
    #menu-mobile {
      list-style-type: none;
    }

  .contactos-redes{
    display: flex;
    flex-direction: row;
    justify-content: center;
  }


}

