:root {
    --primary: #518ceb;
    --secondary: #2c3e50;
    --accent: #f39c12;
    --light: #ecf0f1;
    --dark: #5c6263;
    --footer: #F4F4F4;

    /* Dark  *
    
    /* Light */

}

/* Fonts Weights */
.light {
    font-weight: 200;
}

.heavy {
    font-weight: 500;
}

/* Font Colors */
.light-gray {
    color: var(--light);
}

.dark-gray {
    color: var(--dark);
}


/* */

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

body {
    position: relative;
    min-height: 100vh;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

header {
    width: 100%;
    height: 50px;
    background-color: var(--primary);
}

#content-wrap {
    padding-bottom: 3.5rem;
}

h1 {
    font-size: 26px;
    text-align: center;
    margin-top: 190px;
}

footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 3.5rem;
    background-color: var(--footer);
}