html{
    background-color: #000000;
    width: 100%;
    height: 100%;
}
body{
    overscroll-behavior-y: contain;
    height: 100%;
    margin: 0;
}
.control-panel{
    font-family: system-ui, -apple-system, 'HelveticaNeue', BlinkMacSystemFont, "Roboto", "Segoe UI";

    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.control-panel fieldset:hover{
    z-index: 10;
    background-color: rgba(255, 255, 255, 0.25);
}
.control-panel fieldset{
    color: #fff;
    margin: 30px;
    border-color: #FFF;
    border-style: dotted;

    opacity: .5;
}
.control-panel fieldset:hover{ 
    opacity: 1;
}

.control-panel textarea{
    color: #fff;
    background: transparent;
    min-width: 300px;
    border: transparent;
}
.control-panel button{
    background: transparent;
    color: #fff;
    border-radius: 3px;
    border: 1px solid #fff;

    padding: 5px 10px;
}
.control-panel button:hover{
    background-color: rgba(255, 255, 255, 0.5);
}

.control-panel hr{
    border: 2px dotted #fff;
    border-bottom: none;
}
.formosapp {
    text-align: center;
    margin-top: 50%;
}
.formosapp img {
    max-width: 200px;
}

.portada {
  position: absolute;
  text-align: center;
  top: 3%;
  right: 0;
}
.portada img {
  max-width: 100%;
  opacity: 0.6;
}

a {
  text-decoration: none;
  color: #ffffff;
  opacity:1;
  font-family: 'Helvetica', sans serif;
  font-size: 1.5em;
  font-weight: 400;
  transition: 200ms;
}
a:hover {
  opacity:0.7;
}
ul {
  padding: 0;
  list-style-type: none;
}

nav {
  height: 65px;
}


#menuToggle {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 20px;
  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: #ffffff;
}
#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
{
  position: fixed;
  width: 180px;
  height: 100%;
  max-height: 100%;
  box-shadow: 0 0 10px #121212;
  margin: -50px 0 0 -25px;
  padding: 50px;
  padding-top: 200px;
  background-color: #121212f5;
  -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 li
{
  padding: 10px 0;
  transition-delay: 2s;
}

#menuToggle input:checked ~ ul
{
  transform: none;
}
/* Estilo del botón de compartir */
#shareButton {
  padding: 10px 20px;
  font-size: 16px;
  background-color: #ffffff;
  color: black;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#shareButton:hover {
  background-color: #605c78;
}

/* Estilo de los íconos de redes sociales */
#shareLinks a {
  margin-right: 10px;
}

#shareLinks img {
  border-radius: 8px;
  transition: transform 0.2s ease-in-out;
}

#shareLinks img:hover {
  transform: scale(1.1);
}





