


body {
    font-family: Arial, sans-serif;
    background-image: url('michael-jackson-background.jpg'); /* Updated background image */
    background-size: cover;
    color: #333;
    margin: 0;
    padding: 0;
}

header {
    background-color: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 20px;
    text-align: center;
    position: relative;
}

nav {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    justify-content: space-between;
}

nav ul {
    list-style-type: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin-right: 15px;
}

nav ul#top-right-menu {
    text-align: right;
}

nav ul#top-right-menu li {
    display: inline;
    margin-left: 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
}

main {
    padding: 20px;
}

h1, h2 {
    margin: 0;
}

footer {
    text-align: center;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.6);
    color: #fff;
    position: fixed;
    width: 100%;
    bottom: 0;
}


