:root {

    /* CHANGE THIS LINE TO TEST COLORS */
    --accent: #5B8DEF;

    /*Muted Steel Blue */
    /*--accent: #5B8DEF; */
    /* Emerald Option */
    /* --accent: #2FA772; */

    --bg: #2B3038;
    --surface: #353B45;
    --text: #F1F3F5;
    --secondary: #C0C7D1;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: Arial, sans-serif;

    display: flex;
    justify-content: center;
    align-items: center;

    height: 100vh;
}

.container {
    text-align: center;
    max-width: 700px;
    padding: 2rem;
}

h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--accent);
}

h3 {
    color: var)(--secondary);
}

.tagline {
    color: var(--secondary);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

button {
    background-color: var(--accent);
    color: white;

    border: none;
    padding: 1rem 2rem;

    border-radius: 10px;

    font-size: 1rem;
    cursor: pointer;

    transition: 0.2s ease;
}

button:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}