@import url('https://fonts.googleapis.com/css2?family=Assistant:wght@300;400;500;600;700&family=Lato&family=Mulish:ital,wght@0,200;0,400;0,500;0,600;0,700;0,800;0,900;0,1000;1,1000&family=Open+Sans:wght@400;600&family=Oswald:wght@500&family=Poppins:ital,wght@0,300;0,500;0,700;0,800;1,400;1,700&family=Roboto+Slab:wght@700&family=Roboto:ital,wght@0,300;0,400;0,500;0,700;0,900;1,900&family=Tilt+Neon&family=Ubuntu:wght@300;400;500;700&family=Young+Serif&display=swap');


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    text-decoration: none;
    flex-wrap: wrap;
}

body{
    height: 100%;
    width: 100%;
    background-color:#181818;
}


/* Header 1 Start */
.header{
    display: flex;
    /* flex-direction: column; */
    /* justify-content: center; */
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 4rem;
    color: white;
    /* border-bottom: 1px solid white; */
    overflow: hidden;
    padding: 2rem;
    padding-left: 4rem;
    padding-right: 4rem;

    @media (max-width:700px) {
        padding-left: 2rem;
        padding-right: 2rem;
        font-size: 15px;
    }
    @media (max-width:600px) {
        padding: 0 1rem;
    }
}

.header h1{
    cursor: pointer;
    color: white;
}
.header h1:hover{
    color: rgb(72, 72, 75);
}

.right_side_header{
    display: flex;
    justify-content: center;
    align-items: center;
    justify-content: end;
    gap:15px;
}
.right_side_header img{
    width:1.7rem;
    justify-content: center;
    /* border: 1px solid #181818; */
    border-radius: 20px;
    border-width: 2px;
    
}
#drop-down{
    background-color: transparent;
    border: none;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    justify-content: center;
    /* justify-content: start; */
    cursor: pointer;
    font-size: 18px;
}

/* Header 1 End */


/* Header 2 Start */
    
.header2{
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 140px;
    flex-direction: column;
    /* border-bottom: 2px solid white; */

}

.header2 h2{
    font-size: 1.7rem;
    font-weight: 400;
    @media (max-width:660px) {
        font-size: 1.4rem;
        font: 300;
    }
}



#searchbar{
    margin-top: 40px;
    background-color: #181818;
    border: none;
    width: 340px;
    box-shadow:8px 8px 15px #141414, -8px -8px 15px #1c1c1c;
    height: 35px;
    border-radius: 4px;
    padding: 10px;
    align-items: center;
    color: white;

    @media (max-width:720px) {
        width: 250px;
    }
}

#searchbar::placeholder{
    color: rgb(104, 101, 101);
    font-size: 14px;
    font-weight: 500;
}


button{
    border: none;
    box-shadow:8px 8px 15px #141414, -8px -8px 15px #1c1c1c;
    width: 60px;
    height: 35px;
    border-radius: 4px;
    background-color: #181818;
    margin-left: 8px;
}

button:hover{
    cursor:pointer;
    background-color: #212b33;
}
/* Header 2 End */


/* Main body Start */
.section2{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

main{
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(4, 1fr);
    padding: 2.2rem;
    row-gap: 40px;
    /* padding-left: 17rem;
    padding-right: 17rem; */
    width: 75%;
    
    @media (max-width:1000px) {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(3, 1fr);
    }
    @media (max-width:700px) {
        grid-template-columns: repeat(3, 1fr);
        /* grid-template-rows: repeat(3, 1fr); */
    }
    @media (max-width:600px) {

        grid-template-columns: repeat(2, 1fr);

    }
    @media (max-width:350px) {
        grid-template-columns: repeat(2, 1fr);
    }

}


#img1{
    width:100px;
    border: none;
    border-radius: 20px;
    background-color: #141414;
    box-shadow:8px 8px 15px #141414, -8px -8px 15px #1c1c1c;
    align-self: center;
    justify-self: center;
}

#img1:hover{
    transform: scale(1.1);
    transition-duration: 100ms;
    cursor: pointer;
}



/* Main body End */


/* Footer Start */
footer{
    display: flex;
    color: white;
    justify-content: center;
    padding-top: 45px;
    font-size: 22px;
}

/* Footer End */