main {
    max-width: 800px;
    min-height: 400px;
    display: grid;
    grid-template-columns: 200px 1fr;
    color: white;
}
nav {
    background-color: #3f4554;
    display: flex;
    font-family: sans-serif;
    flex-direction: column;
    align-items: center;
    width: 100%;
    align-items: flex-end;
    justify-content: center;
    padding-left: 45px;
}

nav a {
text-decoration: underline;
color: white;
font-size: large;
margin-bottom: 40px;
padding-top: 5px;
border-top-style: solid;
border-top-width: 1px;
border-top-color: white;
width: 100%;
}

nav a:last-child {
    margin-bottom: 0px;
  }

section {
    background-color: #2c303c;
    padding: 40px;
}

h1 {
    font-family: sans-serif;
    font-size: 65px;
    line-height: 0px;
}

h2{
    font-family: sans-serif;
  
}

.test{
    background-color: red;
    width: auto;
    display: inline-block;
    box-shadow: 0 0 10px 5px #48abe0,
              0 0 20px 7px #ebecca,
              0 0 25px 20px #8a2be2,
              0 0 30px 25px #ff1493;
}


  
  