* {
    margin: 0; padding: 0; border: 0;
    box-sizing: border-box;
}

body {
    background-color: hsl(200, 40%, 20%);
    color: #FFA;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    padding-bottom: 600px;
}

h1, h2 {
    color: hotpink;
    letter-spacing: .3em;
}

h1 {
    border-bottom: 1px solid #EEE;
    margin-bottom: 40px;
}

h2 {
    margin-bottom: 8px;
}

article {
    margin: 16px auto;
    width: 80%;
    border: 2px solid #222;
    padding: 16px;
}

label {
    font-size: 1.5em;
    font-weight: bold;
    color: #EEE;
}

button, input[type=button], input[type=submit], input[type=reset], select {
    font-size: 1.5em;
    padding: 8px 12px;
    background-color: #FFA;
    color: #222;
}

button:hover, input[type=button]:hover, input[type=submit]:hover, input[type=reset]:hover {
    cursor: pointer;
}

input[type=text], input[type=password], input[type=tel], input[type=email], input[type=url] {
    font-size: 1.5em;
    padding: 4px 8px;
    font-family:Verdana, Geneva, Tahoma, sans-serif;
}

video {
    width: 60%;
    aspect-ratio: 16/9;
}

input[type=checkbox], input[type=radio] {
    transform: scale(1.5);
    margin-right: 8px;
}