* {
    margin: 0;
    padding: 0;
    color: var(--text);
}

:root {
    --bg: #160031;
    --fg: #341e4f;
    --text: #ffffff;
    --content-width: 800px;
    --fg-border: #523C6D;
    --padding: 32px;
}

html, body {
    background-color: var(--bg);
}


h1, h2, h3, h4, h5, h6 {
    font-family: 'Unbounded', sans-serif;
}
p, span {
    font-family: 'Inter', sans-serif;
}

body {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 0 var(--padding);
}
body > * {
    width: 100%;
}

h1 {
    font-size: 48px;
    font-weight: 400;
}
p {
    font-size: 24px;
    font-weight: 400;
}