main{
    max-width: 800px;
    min-height: 400px;
    display: grid;
    grid-template-columns: 200px 1fr;
    color: white;
}


nav{
    background-color: 2c303c;
    display: flex;
    justify-content: center;
    flex-direction: column;
    
}

nav a{
    text-decoration: none;
    padding: 10px;
    background-color:#2c303c;
    color: white;
    font-weight: 800;
    width: 100%;
    border-top-width: 1px;
    border-color:lightblue;
    border-top-style: solid;
    margin-left: 50px;
    padding-bottom: 30px;
  
    
}
a:last-child{
    padding-bottom: 10px
}
section{
    background-color: black;
}