﻿body {
    margin: 0;
    position: relative;
    padding: 0;
    height: 100vh;
}

.nav {
    background-color: #333;
    overflow: hidden;
    text-align: center;
    padding: 15px 0;
}

    .nav a {
        color: white;
        text-decoration: none;
        margin: 0 20px;
        font-size: 18px;
        font-family: 'Times New Roman', Times, serif;
    }

        .nav a:hover {
            color: #ffcc00;
        }

body::before {
    content: "";
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    background-image: url('Xhosa.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.25;
    background-attachment: fixed;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 1;
}

h1 {
    text-align: center;
    font-family: 'Times New Roman', Times, serif;
    font-size: 40px;
}

footer {
    background-color: #333;
    overflow: hidden;
    text-align: center;
    padding: 15px 0;
    
}

    footer a:hover {
        text-decoration: none;
        color: white;
        font-size: 18px;
        font-family: 'Times New Roman', Times, serif;
        
    }
