* {
    margin: 0; padding: 0; border: 0; box-sizing: border-box;
}

/* css comment */

body {
    background-color: hsl(200, 93%, 11%);
    color: #FFA;
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    padding: 8px;
    padding-bottom: 600px;
}

h1, h2 {
    color: rgb(5, 218, 242);
    letter-spacing: .3em;
}

h1 {
    border-bottom: 1px solid #e75e08;
    margin-bottom: 40px;
}

h2 {
    margin-bottom: 8px;
}

article {
    margin: 16px auto;
    width: 80%;
    border: 2px solid #3d0404;
    padding: 16px;
}

label {
    font-size: 1.5em;
    font-weight: bold;
    color: #0965e6;
}

button, input[type=button], input[type=submit], input[type=reset],
select {
    font-size: 1.5em;
    padding: 8px 12px;
    background-color: rgb(1, 1, 107);
    color: #f1eeee;
}

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;
}