*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root
{
    /* https://coolors.co/fffffa-798478-89a1ef-ff9914-0f1020 */
    --background: #0F1020;
    --white: #FFFFFA;
    --gray: #798478;
    --primary: #FF9914;
    --secondary: #89A1EF;
}

html
{
    width: 100vw;
    height: 100vh;
    font-size: 62.5%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--background);
    color: var(--white);
}

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

h1
{
    font-size: 3.8rem;
    color: var(--primary);
}

h2
{
    font-size: 2.8rem;
    margin-bottom: 1.8rem;
}

p
{
    font-size: 1.8rem;
}

a
{
    color: var(--secondary);
}

main
{
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

p.titulo_subtitulo
{
    font-size: 2rem;
}