html {
background-color:#1B0029;
color: white; 
font-family: monospace;}

.container {max-width:1000px;
margin:50px auto;
display: grid;
grid-gap: 10px;
grid-template-columns: 250px minmax(0, 1fr);
}

 header { border: black 2px solid;
 grid-row:1 / 2 ;
 grid-column: 1 / 3;}

nav {border: black 2px solid;
grid-row:2 / 3;
grid-column: 1 / 2;
height: max-content; }

main {border: black 2px solid;
grid-row: 2 / 3;
grid-column: 2 / 3;
height: max-content;
img 
  width: 100%; 
  height: auto; 
  border-radius: 8px;}
  
footer {
  border: black 2px solid;
grid-row: 3 / 4;
grid-column: 1 / 3;
color:#1B0029;
}
 

body {
    cursor: url(https://sweetie.crd.co/assets/images/gallery02/d20048b7.gif?v=d780b57c), auto;
     
}