:root {
    --color-main: #a42828;
    --foreground-light: #ffffff;
    --foreground: #101010;
    --background: #f6f0f0;
}

html {
    scroll-behavior: smooth;
    font-size: 62.5%;
}

body {
    margin: 0;
    background-color: var(--background);
    font-family: "Verdana",sans-serif;
}

a {
    color: inherit;
    text-decoration: inherit;
}

dd {
    all: unset;
    display: flex;
    justify-content: flex-start;
}

h1 {
    font-family: "Lexend Deca",sans-serif;
    color: var(--foreground-light);
    font-size: 5rem;
}

h2 {
    color: var(--foreground);
    font-size: 2.5rem;
}

p {
    font-size: 1.6rem;
}

ul {
    padding-inline-start: 0;
}

li {
    line-height: 2;
    font-size: 1.6rem;
}

label {
    font-size: 1.6rem;
}

input {
    font-size: 1.6rem;
    padding: 8px;
    margin: 8px 0;
    border: 1px solid rgba(0,0,0,0.5);
    border-radius: 8px;
    flex: 1;
}

textarea {
    font-size: 1.6rem;
    padding: 8px;
    margin: 8px 0;
    border: 1px solid rgba(0,0,0,0.5);
    border-radius: 8px;
    flex: 1;
}

.subtitle {
    color: var(--foreground-light);
    font-size: 1.6rem;
    text-transform: uppercase;
}

.header, .footer {
    background-color: var(--color-main);
    padding: 20px;
    text-align: center;
}

.header {
    margin-bottom: 32px;
}

.footer {
    margin-top: 32px;
    font-size: 1.6rem;
    padding-bottom: 20rem;
}

.section {
    max-width: 20cm;
    margin: 0 auto;
    padding: 24px;
    color: var(--foreground);
}

.contact-row {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;

    color: var(--foreground);
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.contact-row-item {
    margin: 8px 24px 8px 8px;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    text-align: left;
    color: var(--foreground-light);
}

.form-row {
    display: flex;
    flex-direction: column;
    margin: 16px 0;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.submit-button {
    background-color: var(--color-main);
    color: var(--foreground-light);
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 1.6rem;
    padding: 12px 32px;
    margin-right: 12px;
    border-radius: 8px;
    cursor: pointer;
}

.cancel-button {
    background-color: var(--foreground-light);
    color: var(--foreground);
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 1.6rem;
    padding: 12px 32px;
    margin-left: 12px;
    border-radius: 8px;
    cursor: pointer;
}

.icon-small {
    width: 28px;
    height: 28px;
    margin: 4px 16px;
}

.sections-quick-access {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 24px;
}

.sections-quick-access-button {
    min-width: 40%;
    flex: 1;
    text-align: center;
    color: var(--foreground-light);
    font-size: 2rem;
    font-weight: 800;
    background-color: var(--color-main);
    padding: 1rem;
    border-radius: 12px;
}

.sections-quick-access-button > a {
    display: block;
    width: 100%;
    text-align: center;
}

.floating-wpp {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    background-color: var(--foreground-light);
    color: var(--foreground-light);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.wpp-icon {
    width: 8rem;
    height: 8rem;
}

@media only screen and (max-width: 1000px) {
    textarea {
        font-size: 3rem;
        padding: 16px;
    }

    input {
        font-size: 3rem;
        padding: 16px;
    }

    label {
        font-size: 3rem;
    }

    .submit-button {
        font-size: 3rem;
    }

    .cancel-button {
        font-size: 3rem;
    }

    .contact-row-item > a > p {
        margin-top: 32px;
        font-size: 3rem;
    }

    .sections-quick-access-button {
        font-size: 3rem;
        padding: 32px;
    }

    .wpp-icon {
        width: 16rem;
        height: 16rem;
    }
  }