.container {
    align-content: center;
    max-width: 1000px;
    margin: 75px auto;
    grid-gap: 10px;
    display: grid;
    grid-template-columns:200px minmax(0,1fr);
    color: white;  
}

.ascii-art {
    font-family: monospace;
    white-space: pre;
    color: white;
    display: inline-block;
}

.centering {
  display: grid;
  place-items: center;
  height: 0x;  
}

p {
    color: white;
    padding: 15px;

}
h3 {
    color:white;
    text-align: center;
  
}


body{
     background-image: url('images/vintagespacebg.gif');
	 background-repeat: repeat;
	 background-attachment: fixed;
	
}
    nav, main  {
    border: white 4px outset;
    background-color: black;
    overflow-wrap: break-word
}


header {
    grid-row: 1/ 2;
    grid-column: 1/3 ;
}


nav {
    height: max-content;
    grid-row: 2/3 ;
    grid-column: 1/2;    
}


nav li  {
    color: white;
    text-decoration: none;
    list-style-type: none;
        }

main {
    grid-row:2/3;
    grid-column:2/3;
    height: max-content;
    padding: 15px;
}


footer {
    grid-row: 3/4;
    grid-column: 1/3;

}