/*====================
    Root Variables
====================*/
:root {
    --primary-dark: #1a1a1a;
    --secondary-dark: #333333;
    --accent-light: #4d4d4d;
    --neutral-gray: #a9a29c;
    --deep-dark: #000000;
    --pure-white: #ffffff;
}

/*====================
    Global Reset
====================*/
* {
    margin: 0; 
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #1a1a1a;
    color: #ffffff;
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
}

h1, h2, h3, h4, h5, h6 {
    color: #ffffff;
    font-family: 'Roboto', sans-serif;
    margin: 10px 0;
}

p {
    color: #ffffff;
    font-family: 'Roboto', sans-serif;
    margin: 10px 0;
}

a {
    color: #ffffff;
    text-decoration: none;
    margin: 10px 0;
}

a:hover {
    text-decoration: underline;
}

button {
    font-size: 18px;
    color: #ffffff;
    font-family: inherit;
    font-weight: 800;
    padding: 10px 20px;
    cursor: pointer;
    position: relative;
    border: none;
    background: none;
    text-transform: uppercase;
    transition-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
    transition-duration: 400ms;
    transition-property: color;
    margin: 10px 0;
}

button:focus,
button:hover {
    color: #fff;
}

button:focus:after,
button:hover:after {
    width: 100%;
    left: 0%;
}

button:after {
    content: "";
    pointer-events: none;
    bottom: -2px;
    left: 50%;
    position: absolute;
    width: 0%;
    height: 2px;
    background-color: #fff;
    transition-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
    transition-duration: 400ms;
    transition-property: width, left;
}

button:hover {
    background-color: #444444;
}

input, textarea {
    background-color: #333333;
    color: #ffffff;
    border: 1px solid #444444;
    padding: 10px;
    font-family: 'Roboto', sans-serif;
    margin: 10px 0;
}

label {
    color: #ffffff;
    font-family: 'Roboto', sans-serif;
    margin: 10px 0;
}