@import url('https://fonts.googleapis.com/css2?family=Arimo:ital,wght@0,400;0,700;1,400&family=Architects+Daughter&display=swap&family=Bowlby+One&display=swap');

:root {
    --black-darker: #000000;
    --black: #414141;
    --gray-darker: #666;
    --gray: #808080;
    --gray-lighter: #bbb;
    --gray-lightest: #f4f4f4;
    --white: #fff;

    --blue: #333;
    --blue-lighter: #3c78d8;
    --blue-lightest: #d2dcff;
    --pink: #FE6A96;

    --text-color: var(--black);
    --text-color-lighter: var(--black);

    --nav-background-color: var(--white);
    --nav-text-color: var(--blue);
}

html {
    font-size: 62.5%;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
    color: var(--text-color);
    box-sizing: border-box;
}

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

h1, h2, h3, h4 {
    font-weight: 700;
}

h1 {
    font-size: 3.2rem;
}

h2 {
    font-size: 2.4rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 2.0rem;
}

h4 {
    font-size: 1.6rem;
}

p, ul {
    font-size: 1.6rem;
    line-height: 1.25;
    color: var(--text-color-lighter);
}

strong {
    font-weight: 700;
}

em {
    font-style: italic;
}

section {

}

form {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

form button {
    align-self: flex-start;
}

input {
    align-self: flex-start;
    padding: .25rem;
}

label {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-size: 1.6rem;
}

.hero {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 2rem;

    & h1.break-words {
        font-size: 3.8rem;
        line-height: 1.2;
        white-space: pre-line;
    }
}

& h2.break-words {
    font-size: 2.4rem;
    line-height: 1.2;
    white-space: pre-line;
}

.bowlby {
    font-family: 'Bowlby One', sans-serif;
    font-weight: 400;
    font-style: normal;
}

a.bowlby {
    text-decoration: none;
}

main {
    flex: 1;
    padding: 2rem;
}

nav {
    display: flex;
    justify-content: space-between;

    background-color: var(--nav-background-color);
    color: var(--nav-text-color);
    padding: 2rem;
    align-items: center;
}

nav a {
    color: var(--nav-text-color);
}

nav a.logo {
    color: var(--nav-text-color);
    font-size: 1.8rem;
}

header {
    color: var(--white);
    background-color: var(--blue-lighter);
    padding: 2rem;
}

header a {
    color: var(--white);
}

footer {
    padding: 2rem;
    background-color: var(--black);
    color: var(--white);
}

footer div a {
    color: var(--white);
}

form {
    & label {
        margin-top: .5rem;
    }

    & input[type=submit] {
        margin-top: .5rem;
    }
}

ul.tracks {
    margin-top: 1rem;
    line-height: 1.25;

    & li {
        display: flex;
        flex-direction: row;
        align-items: center;

        & img {
            padding-right: 1rem;
        }

        & a {
            color: inherit;
            text-decoration: none;
        }

        & a:hover {
            text-decoration: underline;
        }
    }
}
