
body
{
    margin: 0;
    background-color: #323947;
    background-image: url(/static/images/noise.png);
    color: white;

    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

a
{
    text-decoration: 0;
    color: #82c4ff;
}

.main-content
{
    margin: 0 auto;
    max-width: 70%;
    width: 100%;
}

.block {
    padding-top: 50px;
}

.pad {
    margin-bottom: 5rem;
    min-height: 76vh;
}

.header-item {
    margin-right: 2rem;
}

.logo img {
    border-radius: 50%;
    width: 32px;
    height: 32px;
}

.header .left, .header .right
{
    display: flex;
    align-items: center;
}

.box {
    padding-top: 50px;
    column-gap: 5%;
    display: grid;
    grid-template-columns: 47.5% 47.5%;
    grid-template-areas:
        "headline preview"
        "cta preview";
    grid-template-rows: auto max-content;
    row-gap: 40px;
}

.box-header {
    align-items: flex-start;
    display: flex;
    justify-content: flex-end;
    margin-top: -10px;
    align-self: end;
    grid-area: headline;
    flex-direction: column;
}

h1 {
    flex: 1 auto;
    margin-top: 10px;
    font-size: 40px;
    font-weight: 600;
    text-transform: uppercase;
}

h2 {
    color: #43A8E5;
    text-shadow: 1px 0 0 rgba(0, 0, 0, 0.4);
}

footer a {
    margin-right: 2rem;
}

.description {
    font-size: 22px;
}

.description:before {
    border-top: 3px solid #fff;
    content: "";
    display: block;
    height: 1px;
    margin-top: 40px;
    margin-bottom: 15px;
    width: 75px;
}

.main-buttons {
    align-self: start;
    grid-area: cta;
    margin-top: 0;
    text-align: left;
}

.media-content {
    grid-area: preview;
    height: auto;
    margin-top: 0;
    padding-bottom: 40px;
    padding-left: 0;
}

img {
    height: auto;
    max-width: 100%;
    object-fit: contain;
}

.pre-buy-tip {
    padding: 1rem;
    background: #ffffff45;
    border-radius: 8px;
    margin-bottom: 8px;
}

.main-buttons
{
}

.main-buttons a
{
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #ffc103;

    text-align: center;
    font-weight: 600;
    color: #131313;
    border-width: 2px;
    border-color: #ffc103;
    background-color: #ffc103;
    transition: all 0.3s;
}

.main-buttons a:hover
{
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
}

a.logo {
    font-weight: 800;
    margin-right: 1rem;
    height: 32px;
}

.header
{
    display: flex;
    justify-content: space-between;
}

.header-wrapper {
    min-height: 50px;
    display: flex;
    align-items: center;
    background: #2d3441;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-wrapper a
{
    color: white;
}

form
{
    margin-top: 40px;
}

.field
{
    position: relative;
    margin-bottom: 2.5rem;
}

[contenteditable=true]:focus, button:focus, input:focus, textarea:focus {
    outline: 0;
}

.field input
{
    background: none;
    font-size: 18px;
    padding: 10px;
    display: block;
    border: none;
    border-bottom: 1px solid #ccc;
}
.field label
{
    position: absolute;
    color: #c6c6c6;
    font-size: 16px;
    font-weight: normal;
    pointer-events: none;
    left: 10px;
    top: 10px;
    transition: 200ms ease all;
}

.field input:focus~label, .field input:valid~label {
    top: -14px;
    font-size: 14px;
    color: #f50d30;
}

.box.left {
    grid-template-areas:
        "preview headline"
        "preview cta";
}

.box.left .main-buttons {
    display: flex;flex-direction: row-reverse;
}

footer
{
    width: 100%;

    margin-top: 3rem;
    height: 50px;
    background: #2d3441;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.spoofer-field
{
    width: 100%;
    height: 100%;
    background: none;
    text-align: center;
    color: white;
    border: none;
    overflow: auto;
    outline: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    resize: none;
}

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

    .box
    {
        display: flex;
        flex-direction: column;
    }

    .description
    {
        font-size: 18px;
    }

    .main-content
    {
        min-width: auto;
        max-width: 92%;
        margin: 0;
        padding: 12px;
    }

    .pad
    {
        margin-bottom: 3rem;
        min-height: 76vh;
    }

    h1 {
        font-size: 20px;
    }

    .spoofer-field
    {
        font-size: 7px;
        min-height: 100px;
    }

}
