@import url('https://rsms.me/inter/inter.css');

* {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: white;
}

html {
    font-size: 1rem;
}

html,
body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    background: #222222;
}

header {
    height: 4rem;
    padding: 0 1rem;
    display: flex;
    align-items: center;
}

header span {
    font-size: x-large;
}

header span b {
    color: #61DAFB;
}

main {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4rem;
}

main section:first-of-type {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1rem;
}

main section:first-of-type h1 {
    color: #61DAFB;
    font-size: xx-large;
    text-align: center;
}

main section:first-of-type div {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

button {
    padding: 0.75rem 2rem;
    background: #4daec8;
    font-size: large;
    border: none;
    border-radius: 0.25rem;
    cursor: pointer;
}

footer {
    height: 2rem;
    background: rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    padding: 0 1rem;
}

footer span {
    font-size: x-small;
    color: rgba(255, 255, 255, 0.5);
}