* {
    margin: 0; padding: 0; border: 0; box-sizing: border-box;
}

body {
    background-color: lavender;
    font-family: 'Edu QLD Beginner';
    position: relative;
}

h1, h2 {
    font-family: 'Major Mono Display', monospace;
}

h1 {
    text-align: center;
    margin: 25px;
    border-left: 50px solid darkcyan;
    border-bottom: 4px solid darkcyan;
    padding: 10px 0;
    font-size: 300%;
}

h2 {
    margin: 8px 0px 20px 8px; 
    text-decoration: underline; 
    text-decoration-color: darkgray
}

.mainnavigation {
    text-align: center;
    margin: 24px 0;
}

.mainnavigation a {
    text-decoration: none;
    display: inline-block;
    padding: 8px;
    color: black;
    font-weight: bold;
    font-size: 150%;
}

.mainnavigation a::after {
    content: "\2764";
    margin-left: 12px; 
}

.mainnavigation a:last-child::after {
    content: "";
}

.mainnavigation a:hover {
    color: plum;
}

form {
    border: 2px solid plum;
    margin: 0px 20px 50px 20px; 
}

label {
    font-size: 140%; font-weight: bold;
    margin: 10px;
}

input[text=text], input[text=password], input[text=email], input[text=tel] { 
    font-size: 120%;
    padding: 8px;
    box-shadow: 2px 2px 2px #222;
}

input[type=submit] {
    font-size: 120%;
    background-color: darkcyan;
    color: white;
    padding: 8px 12px;
    box-shadow: 2px 2px 2px #222;
    margin: 8px;
}

input[type=range] {
    transform: scale(2), translateX(100px);
}

select {
    font-size: 120%;
}

input[type=checkbox], input[type=radio] {
    margin: 10px 0px 0px 10px;
}

textarea {
    font-size: 120%;
    width: 500px; height: 200px;
}

#c1, #c2, #c3{
    height: 20px;
    width: 20px;
}
#r1, #r2, #r3{
    height: 20px;
    width: 20px;
}

#message {
    height: 100px;
    width: 350px;
}