/* main.css */

/* ===== RESET / BASE ===== */
body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: #111;
    background: #fff;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* ===== NAVBAR / Select and style unvisited, visited, hover, and active links: ===== */
.site-header {
    padding: 2rem 1rem 1rem;
    border-bottom: 1px solid #e5e5e5;
}

.nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    font-size: 0.95rem;
}

/* unvisited link */
.nav a {
    opacity: .75;
}

/* mouse over link */
.nav a:hover {
    opacity: 1;
    color: rgb(59 130 246);
    text-decoration: none;
}

/* ===== MAIN CONTENT ===== */
main {
    max-width: 680px;
    margin: 0 auto;
    padding: 2rem 1rem;
    text-align: center;
}

h1, h2, p {
    margin-bottom: 1rem;
}

/* ===== Wallpaper ===== */
body {
  background-image: url('/Wallpaper.jpg');
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: 100% 100%;
}

/* ===== Changing the color of the text ===== */
body {
  color: white; /* light text stands out on dark background */
}