:root {
    font-family: 'Public Sans', sans-serif;
}
body {
    background: white;
    margin: 0;
    padding: 20px;
    display: grid;
    justify-content: center;
}
.navbar {
    display: flex;
    justify-content: center;
}
h1 {
    text-align: center;
    margin-top: 90px;
    margin-bottom: 40px;
}
form {
    padding: 1em;
    border-radius: 10px;    
    box-shadow: 0 0 .4em  #4267B2;
    font-size: 20px;
}
ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
form li + li {
    margin-top: 1em;
}
label {
    display: inline-block;
    width: 90px;
    text-align: left;
    
}
input,
textarea {
    font-size: 17px;
    width: 330px;
    box-sizing: border-box; 
    border: 1px solid #4267B2;
    border-radius: 3px;
    background-color:#4267b20a;
}
input:focus,
textarea:focus {
    border-color: #000;
}
textarea {
    vertical-align: top;
    min-height: 260px;
    height: fit-content;
}
.button {
    display: flex;
    justify-content: center;
}
button {
    font-family: inherit;
    font-size: 25px;
    width: 6em;
    height: 1,7em;
    border: 1px solid #4267B2;
    border-radius: 8px;    
}
.contact-wrapper {
    display: grid;
}
h2 {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

