
/* ============================================== 
            initial design starts here 
============================================== */

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
    scroll-behavior: smooth;
}

body{
    background-color:#154360;
}

/* initial design ends here  */


/* ============================================== 
            mainDiv design starts here 
============================================== */


#mainDiv{
    padding:40px ;
    margin-top: 3%;
    /* border: 1px solid red; */
}

h2{
    color: white;
    margin-bottom: 5%;
}

#colorHeading{
    color: #198754;
    border-bottom: 2px solid #198754;
    padding-bottom:10px;
}

#generateDiv{
    width:60%;
    margin-top: 40px;
    padding: 15px;
    background-color: white;
    border-radius:5px;
    display: flex;
    justify-content: space-between;
}


#generateDiv img{
    width: 35px;
    height: 35px;
    margin-left: 5px;
}

#generateDiv input{
    font-size: 20px;
    border: none;
    outline: none;
    width: 100%;
}

#buttonDiv{
    margin-top: 20px;
}

#copyButton{
    cursor: pointer;
}

/* mainDiv design ends here  */

