fieldset{
    width: 200px;
    border-radius: 10px;
    border-color: lightgray;
}

legend, label{
    font-family:  "Script-MT Bold", cursive;
    font-weight: bold;
}

input[type=text], input[type=number], input[type=email], input[type=search], input[type=tel], input[type=week]  {
    padding: 1%;
    border-radius: 10px;
    border-bottom: 1px solid magenta;
    border-left: 1px solid magenta;
}

input[type=reset], input[type=button], button{
    padding: 1%;
    border-radius: 10px;
    border-bottom: 1px solid magenta;
    border-left: 1px solid magenta;
}

input[type=range], input[type=color], textarea {
    border-radius: 10px;
    border-bottom: 1px solid magenta;
    border-left: 1px solid magenta;
}

input[type=radio] +label:hover, input[type=checkbox]+label:hover{
    padding: 1%;
    font-size:17px;
    border-style: solid;
    border-width: 2px;
    border-radius: 10px;
}

div {
    font-family:  "Script-MT Bold", cursive;
    font-weight: lighter;
}


body{
    background-color: greenyellow;
}