* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.banner {
    width: 100%;
    height: 100%;
}

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

    h1 {
        margin: 20px;
    }

    input {
        height: 40px;
        width: 250px;
        text-align: center;
    }

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

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

#labber {
    column-gap: 2px;
    row-gap: 5px;
}

.image_value {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2%;

    img {
        height: 100%;
        width: 100%;
    }
}

.div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: start;
    padding: 1%;
    border: 0.5px solid black;
    font-weight: 600;
    p {
      font-size: x-large;
    }
  } 


.btndiv {
    width: 70%;
    display: flex;
    justify-content: space-around;
    button {
      border: 0.5px solid black;
      border-radius: 05px;
      margin: 05px;
      transition: all 0.5s;
    }
    button:hover{
        transform: scale(1.05);
    }
  }