/* reset rule */
  *{margin: 0; padding: 0; box-sizing: border-box;}


body {
    font-family:verdana, sans-serif;
    color: #eee;
    background-image: url("../images/computerbackground.jpg");
    min-height: 100vh;
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    }

   #wrapper {
    border: 20px solid rgba(13, 245, 102, 0.3);
    border-radius: 30px;
    width: 90%;
    max-width: 1200px;
    min-height: 90vh;
    margin: 20px auto;
    padding: 2rem;
    background-color: rgba(20, 20, 20, 0.95);
    overflow-y: auto;
}

h1 {
    font-family: "Bungee Spice", sans-serif;
    text-transform: uppercase;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    letter-spacing: 1.5vw;
    line-height: 1.4;
    text-align: center;
    margin: 1rem 0;
    text-shadow: 
       0 0 5px rgb(0, 0, 0),
       0 0 10px rgb(18, 248, 10),
        0 0 20px rgb(253, 9, 204),
        0 0 40px rgb(251, 24, 202); /* Creates the glowing effect */
    }

  p.normal {
    color: #10ec43;
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    line-height: 1.6;
    margin: 1rem auto;
    max-width: 800px;
    padding: 1rem;
    text-align: center;
    }

  p.uppercase { 
       text-transform: uppercase;
    font-weight: bold;
    color: rgb(240, 87, 79);
    background-color: rgba(232, 232, 8, 0.8);
    font-size: clamp(0.8rem, 2vw, 1rem);
    max-width: 800px;
    padding: 15px;
    margin: 1rem auto;
    border-radius: 8px;
    text-align: center;
        }

        
  .thick-hr { 
    height: 8px;
    background: linear-gradient(to right, orange, rgb(178, 2, 32));
    border: none;
    border-radius: 4px;
    margin: 1.5rem auto;
    width: 80%;
       }

  nav { 
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    gap: 10px;
    padding: 15px;
    background-color: rgba(0,0,0,0.5);
    border-radius: 8px;
    } 

       /* styling the hyperlinks within the nav menu */
       nav a {
        color: rgb(238, 208, 148);
        text-decoration: none; /* get rid of underlines */
        padding: 8px 15px;
        transition: all 0.3s ease;
        white-space: nowrap;
        border-radius: 4px;
       }

       nav a:hover { background-color: #6101ba; color: #f10f0f; 
        transform: translateY(-2px);
      box-shadow: 0 2px 5px rgba(251, 24, 202, 0.5);}

       .hidden-footer {
        background: linear-gradient(to right, #006400, #228B22);
        padding: 15px;
        font-size: 0.9rem;
        text-align: center; 
        opacity: 0.8; 
        width: 100%;
        color: sandybrown; 
        transition: opacity 0.3s ease; /* Smooth fade effect */
       }

     .hidden-footer:hover {
        opacity: 1; /* reveals on hover */
        box-shadow: 0 -5px 15px rgba(0,0,0,0.3);
       }

       @media (max-width: 768px) {
    #wrapper {
        width: 95%;
        padding: 1rem;
    }
    
    nav {
        flex-direction: column;
        gap: 8px;
    }
    
    nav a {
        width: 100%;
        text-align: center;
    }
    
    .thick-hr {
        width: 95%;
    }
}