@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    background-color: #C5B5A6;
    font-family: "Roboto Mono", monospace;
}

nav {
    background-color: #724641;
    display: flex;
}
nav a {
    color: #DEAC76;
    flex-grow: 1;
    text-align: center;
    padding: 10px;
    font-size: 1.4em;
    text-decoration: none;
}
nav a:hover {
    transition: 200ms;
    color: #C5B5A6;
}

header {
    background-color: #72464155;
    padding: 30px 0;
    text-align: center;
}
header h1 {
    font-size: 3em;
    letter-spacing: .1em;
    font-weight: normal;
}
header p {
    font-size: 1.3em;
    padding: 15px 0;
}

main {
    margin: 10px 30px;
}

form#orderForm {
    display: flex;
    flex-direction: column;

}
#orderForm fieldset {
    border: 0px;
    border-bottom: 2px solid #72464155;
    padding: 30px 0;
}
#orderForm fieldset label {
    font-size: 1.5em;
    font-style: italic;
}
#orderForm fieldset h2 {
    font-size: 1.8em;
    padding: 20px 0;
}

#orderForm fieldset select {
    font-size: 1.5em;
    margin: 10px;
}

#orderForm input[type=checkbox], #orderForm input[type=radio], #orderForm input[type=range] {
    transform: scale(1.5);
    margin: 8px;
}

#orderForm #sugarOutput {
    font-size: 1.8em;
    font-weight: bold;
}
#orderForm input[type=range] {
    margin-left: 40px;
}

label, input[type=text], input[type=tel], input[type=url], input[type=email] {
    font-size: 1.5em;
    font-style: italic;
}

textarea {
    width: 60%;
    min-height: 200px;
    font-style: normal;
    padding: 10px;
    line-height: 1.5em;
}

input[type=submit] {
    color: #DEAC76;
    font-size: 1.5em;
    background-color: #724641;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 2px 2px 2px black;
}
input[type=submit]:hover {
    transition: 200ms;
    color: #C5B5A6;
}