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

:root {
    --primary-blue: #487BE4;
    --primary-blue-hover: #2968e9;
    --secondary-blue: #0A3185;
    --secondary-blue-hover: #0537a4;
    --tertiary-blue: #0E46BE;
    --tertiary-blue-hover: #0037ad;
    --white: #fff;
    --p-gray-50: #f9fafb;
    --p-gray-100: #f3f4f6;
    --p-gray-200: #e5e7eb;
    --p-gray-300: #d1d5db;
    --p-gray-400: #9ca3af;
    --p-gray-500: #6b7280;
    --p-gray-600: #4b5563;
    --p-gray-700: #374151;
    --p-gray-800: #1f2937;
    --p-gray-900: #111827;
}

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

html body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--p-gray-50);
    color: var(--p-gray-900);
    min-height: 100vh;
}

nav {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    height: 52px;
    box-shadow: 0 1px 3px #00000013;
    border-bottom: 1px solid var(--p-gray-300);
}

nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 0 1rem;
}

nav a img {
    max-height: 28px;
}

main {
    padding: 3rem 2rem;
    text-align: center;
}

main img {
    max-width: 250px;
    margin-bottom: 2rem;
}

main h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

main p {
    color: var(--p-gray-600);
    line-height: 1.5;
    max-width: 480px;
    margin: 0 auto 1.5rem;
}

main p a {
    color: var(--tertiary-blue);
    text-decoration: none;
}

main p a:hover {
    text-decoration: underline;
}

main h5 {
    font-weight: 300;
    color: var(--p-gray-500);
    text-transform: uppercase;
    margin-bottom: 2rem;
}