/* 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;
}

nav {
    grid-column: 2/3;
    grid-row: 2/3;
    
    background-color: #303133;
    
    display: flex;
    flex-direction: column;
    gap: 10px;
    
    padding: 10px;
}

nav a {
    text-decoration: none;
    color: white;
    text-align: center;
    
    margin: 5px;
    
    background-color: #676975;
}

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;
}

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%;
}