:root {
    --1: #0c0c0c;
    --2: #aaa6a6;
    --main: 30rem;

}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

@media (prefers-reduced-motion: no-preference) {
    html {
        interpolate-size: allow-keywords;
    }
}

body {
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    background: var(--1);
    color: var(--2);
    border-top: 5px solid var(--2);
    font-family: 'ABeeZee', sans-serif;
    height: 100vh;
    display: grid;
    justify-content: center;
    align-content: center;
}

img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
}
input, button, textarea, select {
    font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
    overflow-wrap: break-word;
}
p {
    text-wrap: pretty;
}
h1, h2, h3, h4, h5, h6 {
    text-wrap: balance;
}
#root, #__next {
    isolation: isolate;
}

header .cnt {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
header h1 {
    font-style: italic;
    font-size: 6rem;
    margin: -1rem 0;
}
.socials {
    list-style: none;
    display: grid;
    gap: .4rem;
    grid-auto-flow: column;
}

.socials li a {
    background: #090909;
    display: grid;
    justify-items: center;
    color: #fff;
    text-decoration: none;
    border: 1px solid #222;
}

.socials li a:hover {
    background: #000;
}

.socials li svg {
    fill: var(--2);
    width: 2rem;
    margin: 1rem;
}

.socials li span {
    font-family: monospace;
}

.cnt {
    width: var(--main);
    margin-inline:auto;
}

main {
    width: var(--main);
    margin-inline:auto;
}

.releases {
    margin: 0;
    padding: 0;
}

.releases a {
    color:#FFF;
}

.releases > li {
    position: relative;
    overflow: hidden;
    padding: 1rem 1rem;
    margin: .5rem 0;
    background: #00000042;
    color: #fff;
    border: 1px solid #222;
}

.releases li ul {
    font-family: monospace;
    display: flex;
    margin:.5rem 0;
    padding: 0;
    list-style: none;
}

.releases li ul li {
    border-right: 1px solid #ffffff12;
    padding: 0 .4rem;
    opacity: 0.5;
}

.releases li ul li:hover {
    opacity: 1;
}

.releases li ul li:last-child {
    border-right: none;
}

.qa {
    padding: 0;
    margin: 1rem 0;
    font-family: monospace;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

ul.qa > li {
    color: var(--2);
    list-style: none;
    margin: 0;
    padding: 0;
}

ul.qa li ul li {
    list-style: none;
    margin: 0;
    padding: 0;
    color: #ddd;
}