/* Removes unwanted extra spacing */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
}

:root {
    color: white;
}

body {
    background-color: #0a0a0a;
    font-family: 'Helvetica', sans-serif;
}

::selection {
    background: #8d7948;
    color: white;
}

ul {
    display: flex;
}

/* ===== Footer ===== */
footer {
    bottom: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
}

.site-footer {
    padding: 3.5rem 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

footer a {
    border-bottom: 1.5px dotted rgb(70, 70, 70);
    transition: opacity 0.2s ease-in-out;
}

footer a:hover {
    opacity: 0.5;
}

.socials li {
    padding: 10px 20px;
}

.version {
    color: #fcea4a;
    padding: .5rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    letter-spacing: 2.5px;
}

@media (max-width: 550px) {
    .socials {
        flex-direction: column;
    }
}