* {
    border: 0; margin: 0; padding: 0; box-sizing: border-box;
}

body {
    background-color: #234;
    color: #fff;
    margin: 10px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    overflow-x: hidden;
}

header {
    text-align: center;
    width: clamp(250px, 20vw, 400px);
    border-radius: 50%;
    position: absolute; top: -10px; right: -10px;
    background-color: #222;
    display: flex;
    justify-content: center;
    aspect-ratio: 1;
    border: 2px solid #fff;
}

h1 {
    align-self: center;
    text-align: center;
    font-weight: normal;
    font-size: 2em;
    color: #ff7;
}

table {
    width: 90%;
    margin: 400px auto 40px auto;
    border-collapse: collapse;
}

td {
    border: 2px solid #abc;
    padding: 8px;
}

td:first-child {
    width: 25%;
}

td:last-child {
    width: 75%;
}

/* form styles */

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[type=email] {
    font-size: 1.6em;
    border: 2px groove orangered;
    box-shadow: 2px 2px 4px black;
}

input[type=range] {
    transform: scale(2) translateX(60px);

}

span#numberoutput {
    color: #ff7; font-size: 2em;
    padding-left: 200px;
}

input[type=checkbox], input[type=radio] {
    transform: scale(2);
    margin-left: 8px;
    margin-right: 16px;
}

button {
    background-color: orangered;
    padding: 12px 16px;
    color: #fff;
    font-weight: bold;
}

select, input[type=number] {
    font-size: 14pt;
}