:root {
    --sans-font: -apple-system, BlinkMacSystemFont, "Avenir Next", Avenir, "Nimbus Sans L", Roboto, "Noto Sans", "Segoe UI", Arial, Helvetica, "Helvetica Neue", sans-serif;
    --bg: #fff;
    --text: #212121;
    --text-light: #585858;
    --border: #898EA4;
    --accent: #171c56;
    --green: #bde226;   
    --radius: 0.75rem;
}


*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    -moz-text-size-adjust: none;
    -webkit-text-size-adjust: none;
    text-size-adjust: none;
    font-family: var(--sans-font);
}


body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
    margin-block-end: 0;
}


ul[role='list'],
ol[role='list'] {
    list-style: none;
}

/* Set core body defaults */
body {
    min-height: 100vh;
    line-height: 1.5;
}

h1,
h2,
h3,
h4,
button,
input,
label {
    line-height: 1.1;
}

h1,
h2,
h3,
h4 {
    text-wrap: balance;
    color: var(--accent);
}

a:not([class]) {
    text-decoration-skip-ink: auto;
    color: currentColor;
}


img,
picture {
    max-width: 100%;
    display: block;
}


input,
button,
textarea,
select {
    font-family: inherit;
    font-size: inherit;
}


textarea:not([rows]) {
    min-height: 10em;
}


:target {
    scroll-margin-block: 5ex;
}

body{
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: linear-gradient(to right top, var(--accent), var(--green));
}

.wrapper{
    background: white;
    border-radius: var(--radius);
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

header, main{
    padding: 0 2rem;
    padding-block-start: 3rem;
}

main{
    padding-block-end: 4rem;
    text-align: center;
}

footer{
    font-size: 0.825rem;
    text-align: center;
    padding: 1rem;
    color: white;
    background: var(--accent);
    border-bottom-left-radius: var(--radius);
    border-bottom-right-radius: var(--radius);
}
footer *{
    margin: 0 auto;
}

header img{
    max-width: 10rem;
    margin-left: auto;
    margin-right: auto;
}