body{
    font-family: Arial, sans-serif;
}
h1{
    font-size: 50px;
    text-align: center;
    padding: 2%;
}
/*label{
    display: block;
    font-weight:bold;
}*/

input[type="radio"] + label{
    font-size:20px;
    width:auto;
    padding:5px;
}
input[type="radio"] + label:hover{
    font-size:60px;
    background-color:lightpink;
}
input[type="checkbox"] + label:hover{
    font-size:60px;
    width:auto;
    padding:5px;
    cursor:pointer;
}

input[type='text'], input[type='reset'], input[type='button'] {
    padding: 10px;
    border-radius: 5px;
    border-bottom: 1px solid red;
    border-left: 1px solid red;
}
input[type='reset'], input[type='button'] {
    width: 150px;
    font-family: Verdana, serif;
}
table{
    border-collapse: collapse;
    border: 1px solid gray;
}

input[type="number"] {
    width: 120px;
    padding: 4px;
    background: aqua;
}

input[type="date"] {
    width: 150px;
    padding: 6px;
    background: greenyellow;
}

input[type="color"] {
    width: 56px;
    height: 42px;
}


input[type="file"] {
    width: 200px;
    border: 1px solid;
    color: purple;
}

input[type="email"] {
    width: 200px;
    padding: 4px;
    background: red;
}