/* CSS Document */
body {
    display: grid;
    grid-template-columns: auto 120px;
    //max-width: 1024px;
    margin: 0px auto;
    
    background: linear-gradient(
        180deg,
        #330867 0%,
        #5b2c8f 35%,
        #30cfd0 100%
    );

    background-attachment: fixed;
}

header {
    grid-column-start: 1;
    grid-column-end: 3;
    grid-row-start: 1;
    grid-row-end: 2;
    
    color: white;
    text-align: center;
    
    background-color: #303133;
    
    margin-bottom: 10px;
    
    box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px;
    
    text-shadow: 0 1px 0 #CCCCCC, 0 2px 0 #c9c9c9, 0 3px 0 #bbb, 0 4px 0 #b9b9b9, 0 5px 0 #aaa, 0 6px 1px rgba(0,0,0,.1), 0 0 5px rgba(0,0,0,.1), 0 1px 3px rgba(0,0,0,.3), 0 3px 5px rgba(0,0,0,.2), 0 5px 10px rgba(0,0,0,.25), 0 10px 10px rgba(0,0,0,.2), 0 20px 20px rgba(0,0,0,.15);
}

nav {
    grid-column: 2/3;
    grid-row: 2/3;
    
    background-color: #303133;
    
    display: flex;
    flex-direction: column;
    gap: 10px;
    
    padding: 10px;
    
    border-radius: 10px;
    
    margin-right: 10px;
    
    box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
}

nav a {
    text-decoration: none;
    color: white;
    text-align: center;
    
    margin: 5px;
    padding-top: 5px;
    padding-bottom: 5px;
    
    background-color: #676975;
    
    transition-duration: 0.4s;
    
    border-radius: 5px;
    
    box-shadow: rgba(0, 0, 0, 0.17) 0px -23px 25px 0px inset, rgba(0, 0, 0, 0.15) 0px -36px 30px 0px inset, rgba(0, 0, 0, 0.1) 0px -79px 40px 0px inset, rgba(0, 0, 0, 0.06) 0px 2px 1px, rgba(0, 0, 0, 0.09) 0px 4px 2px, rgba(0, 0, 0, 0.09) 0px 8px 4px, rgba(0, 0, 0, 0.09) 0px 16px 8px, rgba(0, 0, 0, 0.09) 0px 32px 16px;
}

nav a:hover {
    background-color: #55565e;
}

section {
    grid-column: 1 / span 1; /* 1/2 */
    grid-row: 2 / span 1;    /* 1/3 */

    background-color: #303133;
    border-radius: 10px;

    color: white;
    
    margin-right: 30px;
    margin-left: 30px;
    
    padding: 20px;
    
    box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
}

footer {
    /*grid-column: 1/3;*/
    /*grid-row: 4/5;*/
    
    margin-top: 40px;
    
    text-align: center;
    padding: 3px;
    background-color: #676975;
    color: white;
    
    bottom: 0;
    position: fixed;
    
    width: 100%;
}


.glow {
  position: fixed;
  width: 300px;
  height: 300px;

  border-radius: 50%;
  pointer-events: none;

  background: radial-gradient(
    circle,
    rgba(0,255,255,0.35) 0%,
    rgba(0,255,255,0.1) 40%,
    transparent 70%
  );

  transform: translate(-50%, -50%);
  mix-blend-mode: screen;

  filter: blur(20px);
}