html, body {
   margin: 0;
   padding: 0;
   width: 100%;
   max-width: 100%;
   overflow-x: hidden;
}

* {
   box-sizing: border-box;
}

h1 {
   font-size: 50px;
   font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
   font-style: italic;
   color: #eaceaa;
   padding-bottom: 20px;
   margin: auto;
}

a {
   background-color: #745032;
   font-size: 15px;
   font-weight: bold;
   text-decoration: none;
   color: antiquewhite;
   padding: 8px 15px;
   border-radius: 20px;
   margin: auto;
   text-align: center;
}

a:hover {
   color: #2C0F10;
   text-decoration: underline; 
}

header {
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
   gap: 10px;
   width: 100%;
}

.inicio {
   background-color: #2C0F10;
   padding: 50px 20px;
   width: 100vw !important;
   position: relative !important;
   left: 50% !important;
   right: 50% !important;
   margin-left: -50vw !important;
   margin-right: -50vw !important;
   text-align: center;
   box-sizing: border-box !important;
}

ul {
   display: flex;
   flex-wrap: wrap;
   justify-content: center;
   align-items: center;
   gap: 10px;
   padding: 0;
   list-style: none;
   width: 100%;
}

@media screen and (max-width: 600px) {
   h1 {
      font-size: 32px;
   }

           .inicio {
      padding: 30px 15px;
      width: 100vw !important;
      margin-left: -50vw !important;
      margin-right: -50vw !important;
      border-radius: 0 !important;
   }




   ul {
      flex-direction: column;
      width: 100%;
   }

   a {
      width: 100%;
      max-width: 250px;
      padding: 10px;
   }

   .texto {
      width: 100%;
      height: auto;
      font-size: 14px;
   }
}
