html {
    box-sizing: border-box;
}

*, *:before, *:after {
    box-sizing: inherit;
}

.group:after {
    content: "";
    display: table;
    clear: both;
}

body {
    padding: 0;
    margin: 0;
    font-family: 'Signika', sans-serif;
}

.logo {
    display: block;
    width: 200px;
    height: 180px;
    background-image: url(logo.png);
    text-indent: -9999px;
    margin: 0 auto;
    background-size: contain;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 15px auto;
}

.intro {
    width: 32%;
    padding-right: 20px;
    display: inline-block;
    text-align: center;
    vertical-align: top;
}

.intro__text {

}

.build-form {
    text-align: left;
}

.build-form__item {
    display: inline-block;
    width: 100%;
    margin-bottom: 10px;
}

.build-form__label {
    font-weight: 700;
    display: block;
    font-size: 110%;
    margin-bottom: 4px;
}

.build-form input[type="text"] {
    width: 100%;
    margin-bottom: 10px;
    padding: 10px;
}

.build-form fieldset {
    border: none;
    padding: 0;
    margin-bottom: 10px;
    display: flex;
    column-gap: 16px;
    flex-wrap: wrap;
}

.build-form__radio {
    display: flex;
    gap: 4px;
    margin-bottom: 6px;
    font-size: 16px;
}

.select {
    max-width: 400px;
    width: 100%;
    padding: 10px;
}

.disclaimer {
    font-size: 13px;
}

.main {
    display: inline-block;
    width: 68%;
    vertical-align:top;
    text-align: center;
}

.byon-canvas {
    width: 100% !important;
    height: auto;
}

.byon-canvas[data-ratio="square"] {
    max-width: 640px;
}


.byon-canvas[data-ratio="portrait"] {
    max-width: 447px;
}

.share-row {
}

.button {
    padding: 1rem 2rem;
    border-radius: 4px;
    background: #222;
    font-weight: 400;
    color: #fff;
    display: inline-flex;
    gap: 12px;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin: 10px 5px;
    box-shadow: inset 0 -4px 12px 2px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    vertical-align: top;
    border: 0;
    font-family: 'Signika', sans-serif;
}

.button:hover {
    box-shadow: inset 0 4px 12px 2px rgba(0, 0, 0, 0.1);
}

.button--yellow {
    background: #feeb1a;
    color: #000;
}

.button--facebook {
    background: #3b5998;
}

.button--twitter {
    background: #55acee;
}

.button--tumblr {
    background: #35465c;
}

.button__icon {
    width: 1.125rem;
    height: 1.125rem;
}

.twitter-share {
    display: inline-block;
    vertical-align: top;
}

.upload-response:not(:empty) {
    margin-bottom: 10px;
}

.facebook-box,
.twitter-box,
.tumblr-box {
    display:none;
}

.social-text {
    width: 100%;
    margin-bottom: 10px;
    padding: 10px;

}

footer {
    padding: 12px;
    color: #fff;
    font-size: 120%;
    background-color: #CB0000;
    border-radius: 4px;
    box-shadow: inset 0 -4px 12px 2px rgba(0, 0, 0, 0.2);
}

footer a {
    font-weight: 700;
    color: #fff;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

.moneyplz__ads {
    width: 100%;
    margin: 20px auto;
    overflow: hidden;
}

.merch {
    background: #5C6C85;
    background-image: radial-gradient(circle at 78% 8.2e-15%, #20699D 0%, #012764 91%);
    border-radius: 4px;
    color: #fff;
    padding: 12px;
    margin: 8px 0;

    display: grid;
    grid-template-columns: max-content 1fr 1fr;
    grid-template-rows: 1fr;
    gap: 1rem;

    grid-template-areas:
    "art title buttons";
}

.merch__header {
    margin: 0;
    font-weight: 400;
    display: inline-flex;
    grid-area: title;
    align-self: center;
}

.merch__buttons {
    display: flex;
    gap: 8px;
    grid-area: buttons;
}

.merch__button {
    flex: 1 1 0px;
    appearance: none;
    border: none;
    color: #fff;
    padding: 1rem  0.5rem;
    border-radius: 0.25rem;
    background: rgba(0,0,0,0.15);
    gap: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 14px;
    font-family: inherit;
    font-weight: 400;
    flex-direction: column;
}

.merch__button:hover {
    background: rgba(0,0,0,0.2);
}

.merch__button svg {
    height: 24px;
    fill: currentColor;
}

.merch__tee {
    width: 64px;
}

.merch__artwork {
    grid-area: art;
    display: inline-flex;
    align-items: center;
}

.merch__example-art {
    height: 38px;
    margin-right: -20px;
    align-self: center;
    width: auto;
    box-shadow: 0 2px 2px rgba(0,0,0,0.3);
    transform: rotate(-6deg) translateX(-30px);
}

@media only screen and (max-width: 980px) {
    .intro {
        width: 35%;
        padding: 20px;
    }


    .intro__text {
        font-size: 90%;
    }

    .main {
        width: 65%;
        padding-right: 20px;
    }

    .logo {
        width: 150px;
        height: 135px;
    }

}

@media only screen and (max-width: 800px) {
    .container {
        margin: 10px auto;
    }

    .intro {
        width: 100%;
        padding: 10px;
    }

    .intro__text {
        margin-top: 0;
    }

    .logo {
        float: left;
        margin-right: 20px;
        margin-bottom: 20px;
        width: 100px;
        height: 90px;
    }

    .main {
        width: 100%;
        padding: 0;
    }

    .build-form__item {
        width: 48%;
    }

    .build-form__item:first-of-type {
        margin-right: 4%;
    }

    .button {
        padding: 0.75rem 1.25rem;
        font-size: 100%;
        margin: 5px;
    }


    .merch {
        margin-left: 6px;
        margin-right: 6px;
        grid-template-columns: max-content 1fr;
        grid-template-rows: min-content 1fr;
        grid-template-areas:
    "art title"
    "buttons buttons";
    }

    .merch__header {
        font-size: 16px;
    }

    footer {
        margin: 5px;
        padding: 8px;
        font-size: 90%;
        text-align: center;
    }
}


@media only screen and (max-width: 400px) {

    .build-form__item {
        width: 100%;
    }

    .build-form__item:first-of-type {
        margin-right: 0;
    }

}

/* Portrait
@media only screen
and (max-device-width: 440px)
and (orientation: portrait) {

    .moneyplz {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: #fff;
        box-shadow: 0 -2px 8px rgba(0,0,0,0.2);
    }

    .moneyplz__ads {
        margin: 0 auto;
    }

    footer {
        margin-bottom: 110px;
    }

}
*/