* {
    margin: 0; padding: 0; border:0; box-sizing: border-box;
}
body {
    background-color: darkblue;
    color: yellow;
    font-family: courier;
    padding: 8px;
    padding-bottom: 600px;
}
   
h1, h2 {
    color: hotpink;
    letter-spacing: 1em;

}

h1 {
    border-bottom: 1px solid #EEE;
    margin-bottom: 40px;
}
h2 {
    margin-bottom: 8px;
}

article {
    margin: 16px auto;
    width: 80%;
    border: 2px solid black;
    padding: 16px;
}
label{
    font-size: 1.5em;
    font-weight: bold;
    color: #eee;
}
button, input[type=button], input[type=submit], input[type=reset] {
    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=email],
input[type=file],
input[type=tel],
input[type=url] {
    font-size: 1.5em;
    padding: 4px 8px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}
video {
    width: 60%;
    
    aspect-ratio: 16/9;
}

select {
    background-color:#ffa;
    font-size: 1em;
}

input[type=checkbox], input[trype=radio] {
    transform: scale(1.5em);
}

