
*{
    background-color: rgb(71, 221, 221);
    padding: 0;
    margin: 0;
}
#i{
    margin: auto;
    margin-top: 50px;
    height: 750px;
    width: 600px;
    border: 1px solid black;
    overflow: hidden;
}
#one{
    height: 40px;
    width: 400px;
    text-align: center;
    margin: auto;
    margin-top: 20PX;
    margin-bottom: 50px;
    color: black;
    transition: 0.3s linear;
}
#one:hover{
    color: #6900f1;
    transform: scale(1.1);
}
#two{
    height: 620px;
    width: 500px;
    margin: auto;
}
.one{
    width: 490px;
    height: 20px;
}
.i{
    position: relative;
}
.two{
    width: 100px;
    height: 30px;
    background-color: aqua;
    position: absolute;
    top: 20px;
    left: 20px;
    transition: 0.3s linear;
}
.two:hover{
    background-color:  #74EE15;
    transform: scale(1.2);
}
.three{
    width: 100px;
    height: 30px;
    background-color:  aqua;
    position: absolute;
    top: 20px;
    right: 40px;
    transition: 0.3s linear;
}
.three:hover{
    background-color:  #74EE15;
    transform: scale(1.2);
}
.four{
    height: 40px;
    width: 110px;
    display: block;
}
.five{
    height: 40px;
    width: 110px;
    /* margin: 0px 0px 0px 400px; */
    display: block;
}
input{
    margin-top: 5px;
}

.x{
    position: relative;
    margin-bottom: 10px;
}

.ii{
    position: absolute;
    top: 0;
    left: 0;
    transition: 0.3s linear;
}

.ii:hover{
    color: #ff0000;
    transform: scale(1.2);
}

.iii{
    position: absolute;
    top: 0;
    left: 100px;
    transition: 0.3s linear;
}

.iii:hover{
    color: #ff0000;
    transform: scale(1.2);
}

.iv{
    position: absolute;
    top: 0;
    left: 200px;
    transition: 0.3s linear;
}

.iv:hover{
    color: #ff0000;
    transform: scale(1.2);
}