@import url('https://fonts.googleapis.com/css2?family=Chivo:ital,wght@0,100..900;1,100..900&display=swap');

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

* {
    margin: 0;
}

:root {
    /* I don't understand colors. Luckily this site does: https://www.hover.dev/css-color-palette-generator */
    --primary-text-color: #0a0a0a;
    --primary-background-color: #fefefe;
    --primary-button-background-color: #efbf04;
    --primary-button-highlight-background-color: #ffdf33;
    --secondary-text-color: #fefefe;
}

html, body {
    height: 100%;
    font-size: 20px; /* Sets base size for all other elements */
}

body, button, input {
    font-family: "Chivo", sans-serif;
}

body {
    font-weight: normal;
    color: var(--primary-text-color);
    background-color: var(--primary-background-color);
}

h1 {
    font-weight: 600;
}
h2 {
    font-weight: 500;
}

.button {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    color: var(--primary-text-color);
    border: 1px solid var(--primary-text-color);
    background-color: var(--primary-button-background-color);
    text-decoration: none;
    transition: background-color 0.2s ease-out;
    border-radius: 10px;
    font-size: 0.9em;
    width: fit-content;
}
.button:hover {
    background-color: var(--primary-button-highlight-background-color);
    cursor: pointer;
}
.primary-button {
    padding-left: 4rem;
    padding-right: 4rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
    font-weight: 700;
}
.primary-button {
    font-size: 1.5em;
}
.tertiary-button {
    background-color: #aaaaaa;
    padding: 0.5rem;
}
.tertiary-button:hover {
    background-color: #cccccc;
}

.credits {
    margin-top: auto;
    text-align: right;
    align-self: flex-end;
    font-size: 0.75em;
}

.credits,
.credits a {
    color: #a0a0a0
}