/* Reset default styles */
body, ul {
    margin: 0;
    padding: 0;
}

body {
    background-image: url('https://preview.redd.it/where-can-i-get-the-windows-vista-wallpaper-in-the-best-v0-1lu31x1angtb1.jpg?width=1080&crop=smart&auto=webp&s=cdf84bfb384f85a44c9e7341e63810885d85e5ab');
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: 100% 100%;
}

/* Set up the navbar */
.navbar {
    background-color: #333;
    padding: 10px 0;
    opacity: 0.5; /* 50% transparency */
}

.menu {
    list-style: none;
    text-align: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-shadow: 0 0 10px #fff, 0 0 20px #0ff, 0 0 30px #0ff;
}

.menu li {
    display: inline-block;
    margin: 0 20px;
    position: relative; /* Allows positioning of dropdown */
}

.menu a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    padding: 10px 15px;
    display: block;
    transition: background-color 0.3s, transform 0.3s;
}

/* Hover effect for menu items */
.menu a:hover {
    background-color: #575757;
    transform: scale(1.1);
    border-radius: 5px;
}

/* Hide the dropdown menu by default */
.dropdown-menu {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    background-color: #444;
    min-width: 200px;
    border-radius: 5px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
}

.dropdown-menu li {
    display: block;
    text-align: left;
}

.dropdown-menu a {
    padding: 10px 15px;
    color: white;
    text-decoration: none;
    display: block;
}

.dropdown-menu a:hover {
    background-color: #575757;
}

/* Show the dropdown menu when hovering over the parent item */
.dropdown:hover .dropdown-menu {
    display: block;
}

main {
    padding: 20px;
    margin: 35px auto;
    background-color: #fff;
    width: 80%;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.2);
    border-radius: 14px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }


