/** CSS reset */
*, *::before, *::after {
    box-sizing: border-box;
}
* {
    margin: 0;
}
body {
    height: 100vh;
    height: 100svh;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}
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;
}

/* Global styling */
:root {
    --text-color: white;
    --background-color: black;
    --default-spacing: 32px;
}

body {
    display: flex;
    flex-direction: column;
    background: var(--background-color);
    font-family: Inter, sans-serif;
}

main {
    flex: 1;
    color: var(--text-color);
}

footer {
    text-align: center;
    padding: 20px 0;
}

footer a {
    color: var(--text-color);
    text-decoration: none;
}
