body {
    font-family: Arial, Helvetica, sans-serif;
    background-image: url(diddy.jpg);
    background-size: cover;


}

h1{
    background:bisque;
    text-align: center;

}
p{
    text-align: center;
    margin-bottom: 30px;
    
}

form {
    margin:auto;
    text-align: center;
    background-color: rgb(130, 223, 223);
    border-radius:10px;
    padding: 20px;
    max-width: fit-content;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
hr{
    margin:auto;
    border:none;
    border-top: black 1px dashed;

}
input [type = "radio"],
input [type = "textbox"]{
    margin-right: 10px;
    margin-top: 10px;
    background-color: aliceblue;


}

select{
    width: 100%;
    border-radius: 5px;
    border:3 px solid white;

}

input[type = "submit"],
input[type = "reset"]:hover{
    background-color: bisque;

}

