body{
    background-color:#c1c1c1;
    text-align: center;
    position: relative;
}
img{
    width: 100px;
    position: absolute;
    top:0px;
    left: 0;
}
.div{
    text-align: center;
    border:solid black 4px;
    border-radius: 10px;
    display: flex;
    justify-content:center;
    align-items: center;
    flex-wrap: wrap;
    padding: 7% 3%;
    width:80%;
    margin: 0 auto;
    position: relative;
    background-color: #dbdbdb;
    margin-top:5% ;
}
input{
    border: none;
    outline: 3px solid green;
    border-radius: 5px;
    background-color: #ffc634;
    color: white;
    font-size: larger;
}
label{
    display: block;
    margin: 1%;
    font-size: 25px;
}
.div0{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: column;
    padding:25px 0;
}
a{
    text-decoration: none;
    color: black;
    font-size: 22px;
    background-color: red;
    border-radius:7px ;
    transition: all 3s;
}
a:hover{
    color:red;
    background-color: black;
}
p{
    font-size: 22px;
}
@media screen and (max-width:600px){
    img{
        width:60px;
        left:-3%;
        top:-3%;
    }
}