@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --text-white: #FFFFFF;
    --bg-white: #FFFFFF;
    --purple-dark: #0E0F3B;
    --color-orange: #F86100;
    --hw-turquoise: #0092BC;
    --hw-turquoise-light: #9ACBE5;
    --hw-turquoise-background: #EBF3FA;
    --hw-gray: #CECDD1;
    --hw-gray-dark: #615F5F;
    --hw-gray-background: #F5F5F6;
    --hw-black: #002833;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    margin: 0;
    color: var(--text-white);
    background-color: var(--hw-gray-background);
    font-family: roboto, sans-serif;
    line-height: 1.6;
    font-weight: 400;
}

img {
    max-width: 100%;
    display: block;
    height: auto;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-family: roboto, sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto;
    }
}