h2{
  font-weight: bold;
  font-family: sans-serif;
  font-style:inherit;

}
.col{
    border: 2px solid green;
    height: 80px;
    text-align: center;
    padding: 20px;
    background-color: blue;
}
.col-6{
    text-align: center;
    margin-top: 20px;
}
input{
    width: 15rem;
    height: 3rem;
    border-radius: 2rem;
    border:none;
    box-shadow: rgba(236, 5, 78, 0.741) 0px 20px 30px -10px;
}
button{
    height: 2rem;
    width: 5rem;
    border: none;
    border-radius: 10px;
    background-color: blue;
    color:white;
    cursor: pointer;
}
#tesk{
    justify-content: center;
}
ul{
    text-align: center;
}
.btn:hover{
    background-color: red;
    color: white;
}
button:hover{
    background-color: green;
    color: white;
}
input:hover{
    background-color: white;
    border: 2px solid green;
    color: black;
}