 /* Reset CSS */
 * {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
 }

 /* Para navegadores basados en Webkit (Chrome, Safari, Edge antiguo) */
 .contenedor::-webkit-scrollbar {
   display: none;
 }

 /* Para navegadores basados en Gecko (Firefox) */
 .contenedor {
   scrollbar-width: none;
 }

 /* Para navegadores basados en Chromium/Edge recientes */
 .contenedor {
   -ms-overflow-style: none;
 }

 html {
   color: black;
   font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
   scrollbar-gutter: stable;
   scroll-behavior: smooth;
 }

 body {
   background-color: #c2880b;
   color: #000000;

 }

 h1{
  text-align: center;
  font-size: 2.5rem;
 }

 h2{
  text-align: center;
  font-size: 1.5rem;
 }
 h3{
  text-align: center;
  margin-top: 10px;
  font-size: 1rem;
 }
 main {
  position: relative;
   width: 480px;
   min-height: 100dvh;
   transition: all 1s ease;
   width: 100%;
   margin: 0;
   padding: 20px 20px;
 }

links{
  position: absolute;
  display: flex;
  flex-direction: column;
left:0;
  right: 0;
  margin: 10px auto;
    text-align: center;
  font-size: 2.5rem;
  font-size: 20px;
  bottom: 5dvh;
}


 img {
  position: absolute;
  left:0;
  right: 0;
  margin: 10px auto;
  height: 300px;
 }