:root {
    /*sizing vars*/
    --max-page-width: 1200px;
    /*basic colors*/
    --child-color-black: #282829;
    --child-color-white: #ffffff;
    --child-color-grey-light: #dbdbdb;
    --child-color-grey-alt3: #4e4e4e;
    --child-primary-color: #f05331;
    /*fonts*/
    --child-main-font: "roboto regular", sans-serif;
    --child-header-font-bold: "futura bold", sans-serif;
}

@font-face {
    font-family: "roboto regular";
    src: url("https://www.craftsy.com/app/themes/vidstore-core/assets/fonts/roboto/roboto-regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "futura bold";
    src: url("https://www.craftsy.com/app/themes/vidstore-core/assets/fonts/futura/futura-bold.otf") format("opentype");
    font-weight: bold;
    font-style: normal;
}

* {
    box-sizing: border-box;
}

body {
    background-color: var(--child-color-white);
    font-family: var(--child-main-font);
}

h1, h2, h3, h4, h5 {
    font-family: var(--child-header-font-bold);
}

h1 {
    font-size: 2.4em;
}

h2 {
    font-size: 1.6em;
}

h3 {
    font-size: 1.125em;
}

h4 {
    font-size: 1em;
}

h5 {
    font-size: 0.846em;
}

header {
    background-color: var(--child-primary-color);
    height: 100px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

header div {
    width: 100%;
    max-width: var(--max-page-width);
    display: flex;
    align-items: center;
    padding: 0 16px;
}

header img {
    width: 128px;
}

header h4 {
    color: var(--child-color-white);
    margin-left: 8px;
    text-transform: uppercase;
}

form {
    width: 100%;
    max-width: var(--max-page-width);
    margin: 0 auto;
}

section,
footer {
    padding: 24px 16px;
    width: 100%;
}

section.top {
    background: transparent url("https://www.craftsy.com/app/themes/child-craft/assets/images/craftsy-home-hero-image.png") center/cover no-repeat;
    color: var(--child-color-white);
    box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, .4);
    padding: 40px 16px;
}

section.top h1,
section.top p {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

section.top h1 {
    margin-bottom: 24px;
    line-height: 1;
}

section.top p {
    font-size: 1.2em;
}

section.bottom {
    max-width: var(--max-page-width);
    margin: 0 auto;
    text-align: center;
}

table {
    text-align: left;
    margin: 32px auto;
    border-collapse: collapse;
    color: var(--child-color-grey-alt3);
    font-size: 1em;
}

table, th, td {
    border: 1px solid var(--child-color-grey-light);
}

td {
    padding: 4px 8px;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 500px;
    margin-bottom: 40px;
}

form label {
    color: var(--child-color-black);
    font-family: var(--child-header-font-bold);
    margin-bottom: 5px;
    font-size: 1em;
    width: 100%;
    text-align: left;
}

form label span {
    font-family: var(--child-main-font);
    color: red;
    float: right;
    font-size: .8rem;
}

form fieldset {
    border: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    margin-bottom: 16px;
}

form input {
    -moz-appearance: none;
    -webkit-appearance: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-shadow: none;
    box-shadow: none;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    font-size: 1rem;
    height: 40px;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    line-height: 1.5;
    padding: calc(.5em - 1px) calc(.75em - 1px);
    position: relative;
    vertical-align: top;
    background-color: var(--child-color-white);
    border: 1px solid var(--child-color-grey-light);
    border-radius: 4px;
    color: var(--child-color-black);
    width: 100%;
}

form input.upload {
    background-color: var(--child-color-grey-light);
    height: auto;
}

form button {
    moz-appearance: none;
    -webkit-appearance: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-shadow: none;
    box-shadow: none;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    height: 2.5em;
    position: relative;
    vertical-align: top;
    color: var(--child-color-white);
    cursor: pointer;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    white-space: nowrap;
    background-color: var(--child-primary-color);
    border: 1px solid var(--child-primary-color);
    text-decoration: none;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    padding: 10px 20px;
    font: .875rem/1rem var(--child-header-font-bold);
    text-transform: uppercase;
    border-radius: 6px;
}

form button:hover {
    opacity: 90%;
}

footer {
    background: #fef7f0;
    padding-bottom: 80px;
}

footer img {
    width: 85px;
    margin-top: 16px;
}

footer h4 {
    margin-bottom: 80px;
}