.btn{
    margin-right: 01%;
    margin-top: 01%;
    margin-bottom: 01%;
    background-color: white;
    font-size: 20px;
    font-family: Arial, Helvetica, sans-serif;
    color: black;
    border: 01px solid black;
    border-radius: 05px;
    padding: 10px 20px ;
    cursor: pointer;
}

.product {
    border: 02px solid black;
    border-radius: 05px;
    text-align: center;
    font-size: 20px;
    margin: 50px;

    h1{
        margin: 20px;
    }

    input {
        height: 50px;
        width: 350px;
        text-align: center;
        font-size: 20px;
    }

    #submit {
        height: 50px;
        width: 350px;
        border: 0px;
        background-color: rgba(140, 156, 156, 0.733);
        transition: all 0.5s;
        margin-bottom: 20px;
        cursor: pointer;
    }

    #submit:hover {
        transform: scale(1.05);
    }
}