:root {
    --spacing-lg: 12px;
    --spacing-xl: 20px;
    --font-size-default: 16px;
    --font-size-xl: 24px;
    --color-background-dark: #351A20;
    --color-white: #FFFBD9;
    --color-gradient-gold: linear-gradient(270deg, #FECC50 -1.74%, #F2E792 46.72%, #FDC057 100%);
}

html {
    font-family: Roboto Slab, serif;
    font-size: var(--font-size-default);
    font-weight: normal;
    line-height: 24px;
    background-color: var(--color-background-dark);
    color: var(--color-white);
    position: relative;
    -webkit-tap-highlight-color: transparent;
    margin: 0;
    padding: 0;
    height: 100%;
}

html * {
    box-sizing: border-box;
}

body {
    min-height: 100%;
    margin: 0;
    padding: calc(var(--spacing-lg) * 2) var(--spacing-lg) 0 calc(var(--spacing-lg) * 2);
}

a, a:link, a:visited {
    font-weight: 600;
    text-decoration: none;
    background: var(--color-gradient-gold);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-tap-highlight-color: transparent;
    outline: none;
}

p {
    margin: 0 0 var(--spacing-lg) 0;
}

h1 {
    text-align: center;
    font-size: 30px;
    font-weight: 900;
    line-height: 1.3;
    margin: 0 0 var(--spacing-lg) 0;
    background: var(--color-gradient-gold);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

h2 {
    font-size: var(--font-size-xl);
    line-height: 1.2;
    font-weight: 900;
    margin-top: 0;
    background: var(--color-gradient-gold);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-tap-highlight-color: transparent;
    outline: none;
    margin-bottom: var(--spacing-lg);
}

.home {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.home__content {
    max-width: 1260px;
    margin: auto;
    text-align: left;
}

.home__logo {
    img {
        margin-top: var(--spacing-lg);
        width: 80vw;
        max-width: 300px;
    }
}

.home__description {
    margin-top: var(--spacing-xl);
}

.home__screens {
    list-style: none;
    margin: var(--spacing-lg);
    padding: 0;
    display: flex;
    justify-content: space-between;
    gap: var(--spacing-lg);

    img {
        width: 100%;
        max-width: 20vw;
        height: auto;
    }
}

footer {
    margin-top: var(--spacing-lg);
    text-align: center;
}

.hidden {
    display: none;
}

.contact-wrapper {
    border: 1px solid var(--color-white);
    padding: var(--spacing-lg);
    border-radius: 10px;
    margin: 1.6em 0 1em 0;
    text-align: center;
}

.flex {
    display: flex;
    text-align: center;
}

.glob-center {
    text-align: center;
}

.glob-left {
    text-align: left;
}

.jCaptchaCanvas {
    margin-right: 1em;
}

#contactForm {
    display: flex;
    justify-content: center;

    input, textarea {
        width: 100%;
        font-size: inherit;
    }

    input, button {
        line-height: 1.8;
    }

    button {
        padding: 0.5em 4em;
        margin-bottom: 1.2em;
    }

    td:first-child {
        padding-right: 1em;
    }

    td {
        padding-top: 1.2em;
    }
}

#success {
    color: green;
}

#error, #captchaError {
    color: red;
}