
/* Inspired by https://github.com/nielsVoogt/nice-forms.css/tree/main */

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


html {
    font-size: 16px;
    box-sizing: border-box;
}

body {
    background: #f3f0e7;
    font-family: "Roboto", sans-serif;
    color: #4b5563;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    max-width: 55em;

}

input {
    margin-top: 10px;
    display: block;
}

.main {
    padding: 1em 1em;
    max-width: 100%;

}

section {
    position: relative;
    background: #ffffff;
    padding: 2em;
    border-radius: 0.75rem;
    line-height: 1.6;
    overflow: hidden;
    margin-bottom: 2rem;
    font-size: 0.875rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);

    h1 {
        font-weight: 500;
        font-size: 1.5rem;
        color: black;
        margin-bottom: 0.75rem;
    }
}