:root {
    --main-bg-color: #B1DCFF;
    --main-text-color: black;
    --secondary-bg-color: white;
    --cta-color: #223F74;
    --miny-whitespace: 5px;
    --small-whitespace: 20px;
    --big-whitespace: 40px;
    --humongous-whitespace: 80px;
}


html {
    text-align: center;
    font-family: 'Montserrat', 'Arial', sans-serif;
    box-sizing: border-box;
    color: #3c3c3c;
}

body {
    margin: 0;
}

.bgColored {

    background: linear-gradient(90deg, rgba(255, 255, 255, 0.76) 0%, rgba(167, 209, 249, 0.76) 55%, rgba(189, 190, 251, 0.76) 100%);
    border-radius: 105px;
}

.inputArea {
    background-color: white;
    padding: var(--small-whitespace);
    border-radius: var(--big-whitespace);
    margin-right: var(--big-whitespace);
}

.inputArea input,
.inputArea label {
    height: 22px;
    margin-top: var(--miny-whitespace);
    margin-bottom: var(--miny-whitespace);
}

#newsletterReminder {
    border: none;
    border-radius: 20px;
}

#newsletterReminder::backdrop {
    /* background-color: rgb(4, 4, 16); */
    backdrop-filter: blur(2px);
}

.popup {
    min-width: 450px;
    min-height: 230px;
}

.dialogHeader {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.close {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    height: 16px;
    text-decoration: none;
    width: 16px;

    svg {
        width: 16px;
    }
}

.container {
    margin: 0 auto;
    max-width: 1080px;
    padding-top: var(--small-whitespace);
    /* margin-top: var(--big-whitespace); */
}

.centered {
    margin: 0 auto;
}

.colorRed {
    color: #E17251;
}

header {
    padding: 80px 20px;
}

h1 {
    margin: 0;
    font-style: normal;
    font-weight: 700;
    font-size: 57px;
    line-height: 130%;
    color: #1B1B1B;
}

h2 {
    font-size: 1.5em;
    margin-top: var(--big-whitespace);
    margin-bottom: var(--big-whitespace);
    line-height: 1.5;
}

.row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    align-items: flex-start;
}

.column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

label {
    display: inline-block;
    width: 150px;
}

input {
    display: inline-block;
}

canvas {
    display: inline-block;
    width: 600px;
}

footer {
    text-align: center;
    padding: var(--big-whitespace) 0;
}

footer p {
    margin: 5px 0;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1.2em;
    background-color: var(--cta-color);
    text-decoration: none;
    border: none;
    border-radius: 5px;
    transition: background-color 0.12s;
    margin-bottom: var(--small-whitespace);
    margin-top: var(--small-whitespace);
    color: white;
}

.cta-button:hover,
.cta-button:visited {
    background-color: #2980b9;
    color: var(--main-text-color);
}

.cta-button+.cta-button {
    margin-left: var(--small-whitespace);
}

#imageTextEditorContainer {
    margin-top: var(--humongous-whitespace);
    margin-bottom: var(--humongous-whitespace);
    min-height: var(--humongous-whitespace);
}

#watermarkEditorInputs label {
    /* min-height: 35px; */
    color: #223F74;
    font-family: Rubik, sans-serif;
    font-weight: 400;
}

#watermarkEditorInputs input {
    margin-right: var(--big-whitespace);
}

.headerVector {
    position: absolute;
    width: 340.47px;
    height: 184.25px;
    margin-left: -285px;
    margin-top: -146px;

    transform: rotate(20.52deg);
}

.headerGroup {
    width: 824px;
    height: 285px;
    left: calc(50% - 824px/2 + 52px);
    top: 0px;
    margin: 0 auto;
}