    * {
        box-sizing: border-box;
    }
    
    a {
        text-decoration-line: none;
        color: white;
        font-size: large;
    }
    
    html {
        background-image: url(images/Dark-Wood-Background.jpg);
        background-size: 100%;
        background-repeat: repeat;
    }
    
    nav {
        display: grid;
        grid-template-rows: auto;
        grid-template-columns: 10% repeat(5, 16%) 10%;
    }
    
    body nav img {
        display: grid;
        grid-row: 1/2;
        grid-column: 2/3;
        width: 150px;
        height: auto;
    }
    
    .nav1 {
        display: grid;
        grid-row: auto;
        grid-column: 3/4;
        align-items: center;
        justify-content: center;
    }
    
    .nav2 {
        display: grid;
        grid-row: auto;
        grid-column: 4/5;
        align-items: center;
        justify-content: center;
    }
    
    .nav3 {
        display: grid;
        grid-row: auto;
        grid-column: 5/6;
        align-items: center;
        justify-content: center;
    }
    
    .nav4 {
        display: grid;
        grid-row: auto;
        grid-column: 6/7;
        align-items: center;
        justify-content: center;
    }
    
    main {
        display: grid;
        grid-template-rows: auto;
        grid-template-columns: 10% repeat(5, 16%) 10%;
    }
    
    #body-text {
        font-family: Arial, Helvetica, sans-serif;
        text-align: center;
        justify-content: center;
        padding: 1vw;
    }
    
    .footer-text {
        font-family: Arial, Helvetica, sans-serif;
        display: grid;
        font-size: small;
        text-align: center;
    }
    
    .background {
        display: grid;
        grid-column: 2/7;
        background-color: burlywood;
    }
    
    .title {
        text-align: center;
        font-family: 'Courier New', Courier, monospace;
        display: grid;
        grid-column: 1/7;
    }
    
    .firstparagraph {
        display: grid;
        grid-column: 1/7;
        justify-content: center;
        text-align: center;
        padding: 1vw;
    }
    
    .bodyimagegallary {
        display: grid;
        grid-column: 1/7;
        justify-content: center;
    }
    
    .secondparagraph {
        display: grid;
        grid-column: 1/7;
        justify-content: center;
        text-align: center;
        padding: 1vw;
    }
    
    footer {
        display: grid;
        grid-template-rows: auto;
        grid-template-columns: 10% 40% 40% 10%;
    }
    
    .link1 {
        display: grid;
        grid-row: 1/2;
        grid-column: 2/3;
        background: lightgray;
        padding: 1vw;
    }
    
    .link2 {
        display: grid;
        grid-row: 2/3;
        grid-column: 2/3;
        background: lightgray;
        padding: 1vw;
    }
    
    .link3 {
        display: grid;
        grid-row: 3/4;
        grid-column: 2/3;
        background: lightgray;
        padding: 1vw;
    }
    
    .link4 {
        display: grid;
        grid-row: 1/2;
        grid-column: 3/4;
        background: lightgray;
        padding: 1vw;
    }
    
    .link5 {
        display: grid;
        grid-row: 2/3;
        grid-column: 3/4;
        background: lightgray;
        padding: 1vw;
    }
    
    .link6 {
        display: grid;
        grid-row: 3/4;
        grid-column: 3/4;
        background: lightgray;
        padding: 1vw;
    }