body{
    
    background-image: url(assets/crowsbg.jpg);
    font-family:Franklin Gothic Medium;
}
.container {
        max-width: 1000px;   
      margin:  50px auto; /* 0 for top/bottom margin, auto for left/right */
    display:grid;
        grid-gap: 10px;
        grid-template-columns: 130px auto;
            
} 
    main{
        border: #252645 10px solid;
        grid-row:2/3 ;
        grid-column:2/3 ;
        height: max-content;
        border-radius: 10px;
        color: black;
        background-color: wheat;
        text-align: center;
            
        
        
        
    
}
nav{
    border: #252645 10px solid;
  grid-row: 2/3 ;
 grid-column:1/2 ; 
 height: max-content;
    background-image: url("/assets/.png");
    border-radius: 10px;
    color: black;
    background-color: wheat;
}

header
{
    border:#252645 10px solid;
grid-row: 1/2 ;
 grid-column:1/3 ;  
    background-image: url("/assets/.png");
    border-radius: 10px;
    color: black;
    background-color: wheat;
    text-align-last: center;
}
footer 
{
    grid-row: 3/4 ;
    grid-column:1/3 ;
    border-radius: 10px;
    color: white;
}