body{
    background-color: white;
}
h1{
    font-family: 'Times New Roman', Times, serif;
    text-align: center;
    color: black;
}
table{
    border-collapse: collapse;
    border: 3px dotted deeppink;
    width: 70%;
    padding: 2%;
    font-size: 20px;
    margin-top: 100px;
    margin-bottom: 100px;
    margin-left: 225px;
}
td{
    padding: 2%;
}
input[type=text], input[type=number]{
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 10px;
    color: #ff026a;
    background-color: aliceblue;
}
input[type=radio]:hover /*+label*/{
    background-color: #d1e8f4;
    font-size: 20px;
    padding: 10px;
    width: 30px;
    height: 40px;
}
input[type=checkbox]+label{
    background-color: lightyellow;
    font-size: 15px;
    padding: 5px;
    width: 10px;
    height: 20px;
    border: 1px solid lightgreen;
    cursor: pointer;
    line-height: 52px;
}
input[type=color]{
    background-color: white;
}
input[type=reset]{
    border: 1px solid;
    border-radius: 4px;
    padding: 10px;
    box-sizing: border-box;
    color: #ff026a;
}
select{
    border: 5px solid lightsteelblue;
}
fieldset{
    background-color: honeydew;
}
.submit_container{
    text-align: center;
}