*, *::before, *::after {
    box-sizing: border-box;
}

body, h1, h2, h3, h4, h5, p, figure, blockquote, dl, dd {
    margin: 0;
}

ul, ol {
    padding: 0;
}

ul[role=list], ol[role=list] {
    list-style: none;
}

html {
    scroll-behavior: smooth;
}

body {
    text-rendering: optimizeSpeed;
    line-height: 1.5;
    overflow-x: hidden;
    font-family: 'Segoe UI', sans-serif;
    --clr-bg:hsl(240, 100%, 95%);
}

article > * + * {
    margin-top: 1.5em;  
}

img, picture {
    max-width: 100%;
    display: block;
    -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
}

input, button, textarea, select {
    font: inherit;
}

h1, h2, h3, h4, h5 {
    font-family:'Segoe UI', sans-serif;
    line-height: 1.1;
}
h1{
    font-size: 2rem;
    margin-block: 1em;
}

header {
    --sombra: 0 0 .4rem rgba(0,0,0,.2);
    position: -webkit-sticky;
    position: sticky;
    width: 100%;
    top: 0;
    background-color: var(--clr-bg);
    z-index: 5;
}
header .contenedor {
    width: min(100vw - 4rem, 70rem);
    min-height: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    row-gap: var(--espaciado);
    flex-wrap: wrap;
    padding-block: 1rem;
    margin: 0 auto;
}
header .logo img {
    max-width: 60vw;
    max-height: calc(100px - 2rem);
  }
main {
    min-height: calc(100vh - 200px);
  }
main > * {
    padding-block: 3em;
}
main > *{
    padding-inline: max(2rem, (100vw - 70rem) / 2);
}
.tabla{
    width: 100%;
    border: 1px solid #111;
    padding: 0;
    border-spacing: 0;
}
th{
    border-bottom: 1px solid #111;
    padding: 1rem;
    font-size: 1rem;
    background-color: var(--clr-bg);
}
th:first-child{
    width: 85%;
}
td:nth-child(odd){
    border-right: 1px solid #111;
}
.enlace img{
    margin:auto;
}

tr:nth-child(even){
    background-color: var(--clr-bg);
}
td{
    padding-inline-start: .5rem;
}
/* .titulos{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
:is(.titulos,.info) *{
    padding: .5em;
}
:is(.titulos,.info) *:nth-child(odd){
    border-right: 1px solid #111;
}
.titulos>*{
    text-align: center;
}
.tabla .info>*{
    border: 1px solid #111;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
.info>*:nth-child(even){
    background-color: red;
} */
