*,
::before,
::after {
    box-sizing: border-box;
}

* {
    margin: 0;
    padding: 0;
}

:root {
    --gold-rust: #d4a65a;
}

:root,
body {
    width: 100%;
    height: 100%;
}

h2,
h4,
p,
ul,
li,
a {
    font-family: 'IBM Plex Mono', sans-serif;
    color: var(--gold-rust);
    line-height: 1.8;
}

a {
    text-decoration: none;
    color: #5a86d4;
    outline: none;
}

main {
    height: 100%;
    width: 100%;
    background-color: #1b1b1b;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    padding: 8px;
    row-gap: 12px;
}

a:hover {
    text-decoration-color: var(--gold-rust);
    text-decoration: underline;
}

h2 {
    font-size: 2.3rem;
}

p {
    text-align: center;
    font-size: 1.2rem;
    width: 60%;
}

footer {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

h4 {
    font-weight: 400;
    text-decoration: underline;
}

ul {
    display: flex;
    justify-content: center;
    list-style: none;
    column-gap: 12px;
    font-size: 1rem;
}
