.container {
    align-content: center;
    max-width: 1000px;
    margin: 75px auto;
    grid-gap: 10px;
    display: grid;
    grid-template-columns: 200px minmax(0,1fr) 150px;
    color: white;
    
    
}


body{
     background-image: url('images/vintagespacebg.gif');
    background-color: black;
	 background-repeat: repeat;
	 background-attachment: fixed;
	
}
    nav, main, links {
    border: white 4px outset;
    background-color: black;
    overflow-wrap: break-word
}

.ascii-art {
    font-family: monospace;
    white-space: pre;
    color: white;
    margin: 0px;
}

.ascii-art2 {
    font-family: monospace;
    white-space: pre;
    color: white;
    margin: 0px;
    font-size: 85%;
}

p {
    color: white;
    padding: 15px;
    text-align: center;
}

h3 {
    color:white;
    text-align: center;

}

h5 {
    color: white;
    text-align: center;
    
}

.centering {
  display: grid;
  place-items: center;
  height: 0x;  
}

header {
    grid-row: 1/ 2;
    grid-column: 1/4;
}


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

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

 .weed li {
    float: left;  
    border-bottom: 2px white inset;
     
}

 .weed li a {
    display: block;
    color: white;
    padding: 10px; 
}

main {
    grid-row:2/3;
    grid-column:2/3;
    height: max-content;
}

links {
    grid-row: 2/ 3 ;
    grid-column:3/4 ;
    height: max-content; 
    padding-left: 10px;
    padding-top: 10px;
}
footer {
    grid-row: 3/4;
    grid-column: 1/4;
     border-top: white 4px outset;

}

li {
    list-style-type: none;
    padding-left: 0px;
} 

