/* CSS reset rule */

* {
    margin: 0; padding: 0; border: 0; box-sizing: border-box;
}

body {
    background-color: rgb(226, 177, 177);
    color: black;
    font-family: 'Gill Sans', 
    'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    overflow-x: hidden;
}

header {
    width: clamp(250px, 20vw, 400px);
    border-radius: 50%;
    aspect-ratio: 1;
    position: absolute; top: -10px; right: -20px;
    background-color: bisque;
    justify-content: center;
    display: flex;
    border: 3px solid black;
 }

 h1 {
    align-self: center;
    text-align: center;
    font-weight: normal;
    font-size: 2.5em;
 }

 table {
    width: 90%;
    margin: 200px auto 40px auto;
    border-collapse: collapse;
 }

 td {
    border: 4px solid black;
    padding: 8px;
    border-color: bisque;
 }

 td:first-child {
    width: 25%;
 }

 td:last-child {
    width: 75%;
 }

 /* form styling --------------  */

 label {
    font-family: 'Courier New', Courier, monospace;
    font-weight: bold;
    font-size: 1.4em;
 }

 input [type=text], input[type=password], 
 input[type=tel], input[type=url], input[types=email] {
    font-size: 1.6em;
    border: 2px groove bisque;
    box-shadow: 2px 2px 2px black;
 }

 input[type=range] {
    transform: scale(2) translateX(60px);
 }

 span#numberoutput {
    color: black; font-size: 2em;
    padding-left: 200px;
 }

 input[type=checkbox], input[type=radio] {
    transform: scale(2);
    margin-left: 16px;
    margin-right: 8px;
 }

 button {
    background-color: bisque;
    padding: 5px;
    font-style: italic;
 }

 select, input[type=number] {
    font-size: 1.6em;
 }