:root {
    --clr-ac: 40, 140, 240;
    --clr-bg: 255, 255, 255;
    --clr-fg: 5, 25, 35;
}
* {
    box-sizing: border-box;
}
html {
    overflow-y: scroll;
}
body {
    background-color: rgba(var(--clr-bg), 1);
    color: rgba(var(--clr-fg), 1);
    font-family: "Segoe UI", "Liberation Sans", sans-serif;
    line-height: 30px;
    margin: auto;
    max-width: 700px;
    padding: 10px;
}
header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-bottom: 10px;
}
nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0 10px;
    justify-content: flex-end;
}
.h1 {
    font-size: 30px;
    font-weight: bold;
}
.h2 {
    font-size: 20px;
    font-weight: bold;
}
a {
    color: rgba(var(--clr-fg), 1);
    text-decoration: none;
}
img {
    display: block;
    width: 100%;
}
.index {
    min-width: 350px;
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
}
.wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 0 5px;
}
.tag {
    color: rgba(var(--clr-ac), 1);
}
hr {
    border: none;
    border-bottom: 1px solid rgba(var(--clr-fg), 0.1);
    margin: 30px 0;
}
.center {
    text-align: center;
}
.grid {
    display: grid;
    gap: 10px;
    grid-template-columns: 1fr;
}
.container {
    height: 175px;
    overflow: hidden;
    position: relative;
}
.container img {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.container a {
    align-items: center;
    color: rgba(var(--clr-bg), 1);
    display: flex;
    justify-content: center;
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
}
table {
    border-collapse: collapse;
    margin: 30px 0;
    table-layout: fixed;
    width: 100%;
}
.th {
    border-bottom: 1px solid rgba(var(--clr-fg), 0.1);
}
td {
    vertical-align: top;
}
::selection {
    background-color: rgba(var(--clr-ac), 1);
    color: rgba(var(--clr-bg), 1);
}