* {

    margin: 0;
    padding: 0;
    border: 0;
    box-sizing: border-box;
}

html {

    scroll-behavior: smooth;
}

body {

    background-color: lightblue;
    font-family: Georgia, 'Times New Roman', Times, serif
}

h1 {

    padding-top: 15px;
    text-align: center;
    color: darkgreen;
    border-bottom: 3px solid grey;
    padding-bottom: 10px;

}

h2 {

    margin-bottom: 24px;

}

h1+nav {

    text-align: center;
    margin: 24px 0;

}

h1+nav a::after {

    content: "\2660";
    margin-left: 16px;
}

h1+nav a:last-child::after {
    content: "";
}

h1+nav a {

    text-decoration: none;
    display: inline-block;
    padding: 8px;
    color: darkgreen;
    font-weight: bold;
    font-size: 150%;

}


nav a:hover {

    color: goldenrod;

}

/* Form Styles------------------*/

form {

    border: 2px solid darkblue;
    margin: 80px 20px 100px 20px;
    padding: 12px;

}

legend {

    text-align: right;
    color: grey;
    font-size: 200%;

}

label {

    font-size: 140%;
    font-weight: bold;

}

input[type=text], input[type=email], input[type=tel], input[type=password] {

    font-size: 140%;
    padding: 8px;
    box-shadow: 2px 2px 2px #222;

}

input[type=submit], button {

font-size: 160%;
background-color: goldenrod;
color: white;
padding: 8px 16px;
box-shadow: 2px 2px 2px #222

}

input[type=range] {

transform: scale(3) translateX(110px);

}

select {

font-size: 140%;

}

input[type=checkbox], input[type=radio] {

transform: scale(2);
margin-right: 20px;

}

textarea {

font-size: 140%;
width: 500px; height: 200px;

}