* {
    background-color: aliceblue;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: cursive;
}

body{
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-block: 40px;
}

.vivek{
    display: flex;
    justify-content: center;
    background-color: white;
    width: 100%;
    padding: 10px;
    margin-bottom: 1rem;
}

header{
    width: 100%;
    max-width: 800px;
    text-align: center;
}

header h1 {
    color: #6a6a6a;
}

header form .search-container{
    margin-top: 20px;
    position: relative;
}

header form .search-container input{
    width: 100%;
    font-size: 18px;
    padding: 12px 24px;
    border-radius: 25px;
    border: none;
    background-color: white;
    box-shadow: #6a6a6a;
}

header form .search-container .material-symbols-outlined{
    position: absolute;
    background-color: white;
    right: 18px;
    bottom: 13px;
    color: #6a6a6a;
    cursor: pointer;
}

.image-container{
    margin-block: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    color: #6a6a6a;
}

.image-container img{
    width: 300px;
    height: 280px;
}

.image-container .imageDiv{
    position: relative;
}

.imageDiv .overlay{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0;
    background-color: rgba(0, 0, 0, 0.6);
    transition: height 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.imageDiv:hover .overlay{
    height: 100%;
}

.imageDiv .overlay h3{
    color: #818181;
    display: none;
}

.imageDiv:hover .overlay h3{
    display: block;
    background-color: transparent;
}

.loadMore{
    border: none;
    border-radius: 14px;
    background-color: white;
    font-size: 1rem;
    padding: 10px 34px;
    color: #6a6a6a;
    cursor: pointer;
    display: none;
}

main section{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 20px 0 50px 0;
}


@media screen  and (max-width : 920px){
    header {
        width: 80%;
    }
    
}
