*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body{
    width: 100%;
    height: 150vh;
}
.nav{
    width: 100%;
    height: 7%;
    display: flex;
    align-items: center;
    justify-content: start;
    background-color: rgb(151, 141, 141);
}
.nav button{
    border: 1px solid burlywood;
    width: 100px;
    background-color: white;
    margin-left: 1%;
    border-radius: 7px;
}
.nav button a{
  
    text-decoration: none;
    color: rgb(184, 157, 120);
}
main {
    width: 100%;
    height: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
}

 .form{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

}
.form img{
    margin-bottom: 5%;
    margin-top: 5%;
    display: none;
   
}
.form form{
    width: 100%;
    height: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.form .lable{
    width: 25%;
    height: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: column;
}
/* .form .lable lable h3{
    margin-top: 5%;
    font-family: 'Anek Tamil', sans-serif;
    font-family: 'Big Shoulders Display', cursive;
    font-family: 'Ubuntu', sans-serif;
    font-size: 15px;
} */
 .form .input{
    width: 75%;
    height: 100%;
    display: flex;
    justify-content:space-around;
    align-items: center;
    flex-direction: column;
}
.form .input input{
    width: 60%;
    line-height: 1rem;
}
.form button{
    width: 30%;
    background-color: rgb(105, 131, 89);
    border: none;
    border-radius: 7px;
    line-height: 2rem;
    font-size: 17px;
    text-decoration: none;
    color: white;
    font-family: 'Anek Tamil', sans-serif;
    font-family: 'Big Shoulders Display', cursive;
    font-family: 'Ubuntu', sans-serif;
}
.form button:hover{
    box-shadow: 1px 1px 3px rgb(133, 158, 133);
}
#newUrl{
    margin-top: 5%;
    background-color: rgba(162, 226, 43, 0.431);
    width: 30%;
    text-align: center;
    border-radius: 7px;
    display: none;

}
#newUrl:hover{
    background-color: rgb(82, 100, 49);
    color: white;
}
#newUrl:active{
    background-color: rgb(35, 53, 35);
    color: white;
}
@media (max-width:1000px) {
    #newUrl{
        width: 90%;
    }
    .form .lable{
        width: 20%;
        margin-left: 5%;
    }
}
@media (max-width:400px){
    #newUrl{
        width: 100%;
    }
}