*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --navbar-height: 9rem;
  --navbar-image-offset: 5rem;
  --home-wave-size: 0px; /* se setea y actualiza en el js*/
  --home-wave-offset: 0px; /* se setea y actualiza en el js*/
}

body {
  font-family: 'Varela Round';/* font-family: 'Fredoka';*/
  max-width: 100%;
  margin: 0;
  padding: 0;
  background-color: #fefefe; /* o #fff si prefieres fondo más plano */
  color: #333; /* color base de texto, neutral */
  line-height: 1.6;
  overflow-x: hidden; /* evita scroll lateral accidental en móviles */
  background-repeat: repeat;
  background-image: url('../Images/Web Generic/Textures/FondoTileable.png');
}

main
{
  padding-top: var(--navbar-image-offset);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

html {
  width: 100vw;
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

.hidden {
  display: none;
}

.construction-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80vh;
  width: 100vw;
  overflow: hidden;
}
.construction-wrapper img {
  max-width: 90%;  
  max-height: 90%;
  object-fit: contain;
}