/*  Theme */

:root {
    --background: #14120b;
    --text: #ffe629;
}

body {
    background-color: var(--background);
    color: var(--text);
    font-family: "Ubuntu", sans-serif;
    font-weight: 300;
    line-height: 1.3;
    margin: 0;
    padding: 0;
}

h1 {
    font-weight: 500;
    font-size: 8em;
    line-height: 0;
    letter-spacing: -0.05em;
}

p {
    font-weight: 500;
    font-size: 1em;
}

header {
    text-align: center;
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
