*{
    margin: 0;
    padding: 0;
}

body{
    min-height: 100vh;
    background-image: linear-gradient(to right, #473e2c, #3E5151);
    
}

.Main{
    text-align: center;
}
.Main h1{
    margin-top: 50px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    color: white;
}

.search-box{
    margin-top: 30px;
    text-align: center;

}

.search-box input{
    border: 2px solid burlywood;
    border-radius: 5px;
    width: 40%;
    height: 25px;
    padding: 2px 10px;
    font-size: 1rem;
}
.search-box button{
    border: 2px solid rgb(239, 234, 229);
    border-radius: 5px;
    padding: 2px 10px;
    font-size: 1rem;
    height: 30px;
    cursor: pointer;
    background-color: rgb(146, 18, 18);
    color: white;
}
.search-box button:active{
    transform: scale(0.94);
}
.search-box .hr-line{
    width: 70%;
    height: 2px;
    background-image: linear-gradient(to right, #8360c3,white, #2ebf91);
    display: inline-block;
    margin-top: 25px;
}

.child-suggestion{
    width: 300px;
    height: 250px;
    border: 2px solid white;
    padding: 5px 8px;
    border-radius: 5px;
    margin: 5px;
}
.child-suggestion img{
    width: 100%;
    height: 210px;
    object-fit: cover;
    border-radius: 5px;
}
.child-suggestion p{
    color: white;
    margin-top: 5px;
}
.parent-suggestion{
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 5px 6%;
}




footer{
    width: 100%;
    height: 140px;
    background-color: rgb(50, 76, 75);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 80px;
    color: white;
    position:relative;
    bottom: 0%;
}
footer h1,span,p{
    margin: 4px;
}
footer a{
    text-decoration: none;
    color: aquamarine;
}








/* Small varient */
@media(max-width: 680px){
    .parent-suggestion{
        display: flex;
        /* flex-direction: column;*/
        justify-content: center;
        align-items: center; 
    }
    .child-suggestion{
        width: 250px;
        height: 180px;
    }
    .child-suggestion img{
        width: 100%;
        height: 150px;
        object-fit: cover;
    }
}