*{margin: 0; padding: 5px;}
h1{
    text-align: center;
    font-family: georgia;
}
.one{
   height: 550px; 
   width: 450px;
   border: 2px solid black;
   background: transparent;
   box-sizing: border-box;
   border-radius: 50px;
}
.two{
    color: blue;
    text-align: center;
    font-family: georgia;
    font-size: 30px;
    padding: 20px;
}
.three{
    font-weight: bold;
    font-family: georgia;
    color: black;
    font-size: 18px;
} 
.one input[type="text"],[type="email"]{
    font-family: Georgia;
    color: black;
    font-size: 15px;
    width: 250px;
    font-weight: bold;
    border-radius: 50px;
    margin-bottom: 20px;
    border: 2px solid black;
}
.one input[type="text"],[type="email"]:hover{
    cursor: pointer;
}
.one input[type="submit"]{
    font-size: 18px;
    font-family: georgia;
    font-weight: bolder;
    background-color:yellow;
    color: blue;
    width: 100px;
    border-radius: 50px;
    margin-bottom: 10px;
}
.one input[type="submit"]:hover{
    cursor: pointer;
    color: yellow;
    background-color: blue;
}
input[type="button"]{
    font-size: 18px;
    font-family: georgia;
    font-weight: bolder;
    background-color:yellow;
    color: blue;
    width: 100px;
    border-radius: 50px;
    margin-bottom: 10px;
}
input[type="button"]:hover{
    cursor: pointer;
    color: yellow;
    background-color: blue; 
}