body {
  width: 100vw;
  height: 100vh;
  margin: 0;
  padding: 0;
  overflow-y: auto;
  color: #222;
  background-color: #ffffff;
 

  font-family: "Montserrat", sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  letter-spacing: 0.01em;
  word-spacing: 0.02em;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;

  scroll-behavior: smooth;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

h1, h2, h3 {
  line-height: .95;
  margin-top: 0;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 1);
}

h2 {
  font-size: 3.5rem;
  font-weight: 900;
  text-transform: uppercase;
  /* sombra negra a 20px a la derecha */
  text-shadow: 0 0 20px rgba(0, 0, 0, .3);

}

h3{
 font-size: 2rem;
   font-weight: 200;
   text-transform: uppercase;
}

p {
  margin-top: 1em; /* asegura separación con el contenido anterior */
  margin-bottom: 0;
 color: rgba(255, 255, 255, 1);
  font-weight: 700;
  text-indent: 2em;        /* tabulación al inicio */
  text-transform: none;    /* conserva mayúscula original */
}

/* Opcional: forzar la primera letra en mayúscula si el HTML no la tiene */
p::first-letter {
  text-transform: uppercase;
}

a {
  color:  rgba(238, 238, 238, 1);
  text-decoration: none;
}

a:hover,
a:focus {
 color:  rgba(255, 255, 255, 1);
  text-decoration: underline;
}

/* Botón genérico */
a.btn, button.btn, .btn {
  display: inline-block;
  padding: .3rem 1rem;
  font-weight: 500;
  font-size: 0.95rem;
  color:  rgba(171, 171, 171, 1);
  background-color:  rgba(252, 5, 53, 1);
  border: none;
  border-radius: 3px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
}

a.btn:hover,
button.btn:hover,
.btn:hover {
 background-color:  rgba(252, 5, 53, .5);
}

/* Elementos esenciales extra */

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


ul, ol {
  margin-left: 0;
  padding-left: 0;
}

button {
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

.copyr {
	position: fixed;
	left: 0;
	bottom: 2%;
	font-size: .7rem;
	color: #222;
padding: .5em;
	transform: rotate(-90deg);
	transform-origin: top left;
	z-index: 1000;
}
.copyr span{
	color: #f13;
}
