* {
    margin: 0; padding: 0; border: 0; box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: hsl(200 40% 55% / .8);
    font-family: 'Edu QLD Beginner', cursive;
}

h1, h2 {
    font-family: 'Major Mono Display', monospace;
    margin-bottom: 24px;
}

h1 {
    text-align: center;
    margin: 24px;
    border-left: 40px solid hsl(200 40% 25% / .8);
    border-bottom: 4px solid hsl(200 40% 25% / .8);
    padding: 8px 0;
    font-size: 300%;
}

.main_navigation a {
    text-decoration: none;
    display: inline-block;
    padding: 6px;
    color: hsl(200 60% 25% / .8);
    font-weight: bold;
    font-size: 150%;
}

.main_navigation a::after {
    content: "\26BE";
    margin-left: 12px;
}

.main_navigation a:last-child::after {
    content: "";
}

.main_navigation a:hover {
    color: orangered;
}

/* FORM STYLES ======================================== */

form {
    border: 2px solid hsl(200 40% 25% / .8);
    margin: 80px 20px 100px 20px;
    padding: 12px;
}

legend {
    text-align: right;
    color: gray;
    font-size: 100%;
}

label {
    font-size: 140%;
    font-weight: bold;
}

input[type=text], input[type=password], input[type=tel], input[type=email] {
    font-size: 140%;
    padding: 8px;
    box-shadow: 2px 2px 2px #222;
}

input[type="submit"], button {
    font-size: 160%;
    background-color: orangered;
    color: #FFF;
    padding: 8px 16px;
    box-shadow: 2px 2px 2px #222;
}

input[type=range] {
    transform: scale(3) translateX(120px);
}

select {
    font-size: 140%;
}

input[type=checkbox], input[type=radio] {
    transform: scale(2);
    margin-right: 20px;
}

textarea {
    font-size: 140%;
    width: 500px; 
}