body {
    background-color: aliceblue;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    padding-bottom: 400px;
}

:root {
    scroll-behavior: smooth;
}

nav {
    background-color: #345;
    color: #EED;
}

nav a {
    display: inline-flex;
    padding-left: 25px;
    color: #EED;
    text-decoration: none;
    font-weight: bold;
}

h1 {
    text-align: center;
    padding-top: 15px;
    background-color: #345;
    color: #EED;
}

h2 {
    text-align: center;
    font-weight: normal;
    background-color: #345;
    color: #EED;
}

#orderForm {
display: flex;
flex-direction: column;
gap: 10px;
}

#orderForm fieldset {
    min-height: 400px;
    padding-top: 5px;
    border: 0;
}

select {
    font-size: 1.5em;
    margin: 8px; padding: 8px;
}

label,
input[type=text],
input[type=tel],
input[type=url],
input[type=email],
 textarea {
    font-size: 1.5em;
    font-style: italic;
}

textarea {
    width: 60%;
    min-height: 200px;
    font-style: inherit;
    padding: 8px;
    line-height: 1.5;
}

input[type=checkbox],
input[type=radio],
input[type=range],
input[type=date] {
    transform: scale(1.5);
    margin: 4px 8px 4px 2px;
}

input[type=range] {
    margin-left: 80px;
}

#sugarOutput {
    font-size: 2em;
    color: #345;
    font-weight: bold;
}

input[type=date] {
    margin-left: 30px;
}

input[type=submit] {
    padding: 15px;
    background-color: #345;
    color: #EED;
}