@import url('https://fonts.googleapis.com/css2?family=Bytesized&family=Press+Start+2P&family=Tiny5&display=swap');

body {
    font-family: Tiny5;
    font-size: 24px;

    background-color: rgb(12, 12, 12);
    color: rgb(220, 220, 220);

    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 24px;
}

header {
    min-height: 720px;
}

h1 {
    all: unset;

    font-family: 'Press Start 2p';
    font-size: 48px;
}

i {
    all: unset;

    font-family: bytesized;
    font-size: 16px;
}

u {
    color: lightgreen;
}

p {
    margin: 0;
    padding: 16px;
}

a {
    color: lightsalmon;
}

a:hover {
    color: lightyellow;
}

ul {
    list-style: square;
}

th {
    font-family: 'Press Start 2p';
    font-size: 32px;
    font-weight: 1;

    padding: 12px;
}

td {
    padding: 6px;
    width: 50%;
}

td > a {
    width: 100%;
}

#bg {
    z-index: -1;
    position: absolute;

    max-width: 80%;
    text-align: center;

    top: 50%;
    transform: translateY(-50%);
}

.content {
    max-width: 750px;

    padding: 12px;

    display: flex;
    flex-direction: column;
    gap: 48px;
}

.content > section {
    flex-basis: 1;

    padding: 24px;

    border-style: solid;
    border-radius: 12px;

    background-color: rgba(2, 2, 2, 0.75);
}

.socials {
    max-width: 820px;

    padding: 24px;

    border-style: solid;
    border-color: orange;
    border-radius: 12px;

    background-color: rgba(2, 2, 2, 0.75);
}

.socials > table {
    width: 100%;

    padding: 24px;
}