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

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


header {
    grid-row: 1/ 2;
    grid-column: 1/3 ;
    display: inline-block;
}
nav {
    height: max-content;
}
ul.nav{
    grid-row: 2/3 ;
    grid-column: 1/2;
}


    ul.nav li a {
            color: white;
            text-decoration: none;
        list-style-type:none;
            padding: 20px 15px;
        }
        ul.nav li a:hover {
            background-color:#280081;
            color: rebeccapurple;
        }

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

.ascii-art {
    font-family: monospace;
    white-space: pre;
    color: white;
    display: inline-block;
}


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

}