*{
    margin: 0;
    padding: 0;
    font-family: Helvetica,Arial, sans-serif;
}
h1{
    text-align: center;
    padding: 30px;
}
body{
    margin-bottom: 2rem!important;
}
header{
    background-color: cyan; 
    display: block;
}
.container-fluid{
    margin-top: 20px;
    gap: 20px;
    display: flex;
    justify-content: space-evenly;
    
}
.inputImage{
    width: 40%;
    background-color: #ffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    padding: 20px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.container-fluid input{
    margin-left: 25px;
}
.layout{
    height: auto;
    width: 100%;
    min-height: 200px;
    margin-top: 20px;
    border: 1px solid black;
}
.check{
    object-fit: cover;
    height: auto;
    width: 100%;
    display: block;
}
.color-fill{
    border: 1px solid black;
    height: 40px;
    width: 70px;
    border-radius: 5px;
    cursor: pointer;
}
.color-details{
    margin-top: 20px;
    display: flex;
    gap: 20px;
}
.result{
    font-size: 20px;
}

.fa-clone{
    display: none!important;
    transition: 500ms;
    color: white;
}
.fa-check{
    font-size: 20px!important;
    transition: 500ms;
    transform: scaleY(1.4);
    color: white;
}
.color-fill:hover > .fa-clone{
    display: inline-block!important;
}

footer p a{
    text-decoration: none;
    font-style: italic;
}
footer p{
    font-size: 18px;
}


.btn{
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    font-size:x-large!important;
    font-weight: bold!important;
}
@media screen and (max-width: 852px){
    .inputImage{
        width: 55%;
    }
}
@media screen and (max-width: 650px){
    .container-fluid{
        flex-wrap: wrap;
    }
    .inputImage{
        width: 80%;
    }

    .card-res{
        margin-top: 0px!important;
    }
}
@media screen and (max-width: 420px){
    .inputImage{
        width: 100%;
    }
    
}


