html {
    box-sizing: border-box;
    overflow-x: hidden;
  }

  body {
    margin: 0;
  }

  .loader {
    position: fixed;
    top: 0;
    left: 0px;
    width: 100vw;
    height: 100vh;
    background: black;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
    animation: forwards fadeOut 1s;
  }
  .loader svg{
    width: 80%;
    position:absolute;
    left: 6%;
  }


  .boton {
    display: inline-block;
    padding: 10px 20px;
    margin: 10px;
    font-family: 'Comic Sans MS', cursive;
    font-size: 18px;
    background: white;
    border: 2px solid black;
    filter: url(#wavy);
    cursor: pointer;
    color: black;
    text-shadow: 1px 1px 0 white;
    transition: background 0.3s;
  }

  .boton:hover {
    background: #ffcc00;
  }

 .path-trace {
  stroke: white;
  stroke-width: 1;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  transition: fill 0.3s ease;
}

.path-trace.animate {
  animation: draw 4s ease forwards;
  animation-delay: 0s;
}

.path-trace.filled {
  fill: currentColor;
}
 .path-trace2 {
  stroke: white;
  fill: none;
  stroke-width: 1;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  transition: fill 0.3s ease;
}

.path-trace2.animate {
  animation: draw 4s ease forwards;
  animation-delay: 0s;
}

.path-trace2.filled {
  fill: currentColor;
}

@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}

  #links-hero{
    background-image: url('../img/contact-hero3.jpg');
    background-size: cover;
    object-fit: contain;
  }

  