
 @import url('https://fonts.googleapis.com/css2?family=Indie+Flower&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Mrs+Sheppards&family=Pliant:ital,wght@0,100..900;1,100..900&display=swap');
*{
    padding:0px;
    margin:0px;
    border:none;
    outline:none;
    position: relative;
    box-sizing:border-box;
    
}

body {
    height: 100svh;
    max-width: 100svw;
    font-family: "Indie Flower", cursive;

    display: grid;
    grid-template-columns:1fr 4fr ;
    grid-template-rows: 100px 1fr 100px ;
    grid-template-areas:
    "header header "
    "aside im"
    "footer footer"
     ;
}
header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #151d29;
    padding: 40px;
    grid-area: header;
    
}
h1{
    color:white;
}
nav ul {
    display: flex; 
    gap: 20px;
}

nav ul a{
    
    
    text-decoration: none;
    color:white;   
}
nav ul li{
    list-style: none;   
}

aside{
    display: flex;
    padding: 15px;
    flex-direction: column;
    background-color: rgb(82, 82, 144);
    color: white;
    grid-area: aside;
}
#f{
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    padding: 30px;
    background-color: #111827;
    color: white;
    grid-area: footer;
}
main{
    grid-area: im;
    padding: 20px;
    display: grid;
    /* gap: 20px; */
}
.im{
    display: grid;
     gap: 20px;
    grid-template-columns: repeat(auto-fill ,minmax(200px,1fr));
    
}
.im div img{
    width: 100%;
    height: 100%;
    border-radius: 5px;
}
.im div img:hover{
    box-shadow: 0px 0px 10px rgb(75, 67, 67);
}

@media (max-width:750px){
    aside{
        display: none;
    }
    
}

@media(min-width:425px){
    header{
        display: flex;
        
        gap: 10px;
    }

}