body {
    background: linear-gradient(to bottom, #333, #111);
    /* background-image: linear-gradient(to right top, #0a0eee, #160dd0, #1a0cb3, #1b0a97, #1a097c, #2b0164, #2e004e, #2b003a, #2a0027, #230019, #19000c, #000000);
    background-image: linear-gradient(to bottom, #03055e, #08055d, #0c055c, #10065b, #13065a, #22024f, #280044, #2b003a, #2a0027, #230019, #19000c, #000000);
    background-image: linear-gradient(to bottom, #02033f, #030544, #050749, #0a084e, #0f0853, #1f044a, #270142, #2b003a, #2a0027, #230019, #19000c, #000000);
    background-image: linear-gradient(to bottom, #000, #02033f, #030544, #050749, #0a084e, #0f0853, #1f044a, #270142, #2b003a, #2a0027, #230019, #19000c, #000000); */
    color: #fff;
    font-family: monospace;
    padding-top: 20px;
    padding-bottom: 10px;
    padding-left: 10px;
    padding-right: 10px;
}

#main {
    background-color: rgba(0,0,0,1);
    max-width: 400px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: white 0px 0px 2px .1px;
}

h1 {
    text-align: center;
    font-weight: bold;
    font-size: 60px; /* Set h1 font size to 60px */
    /* color: #8800cc; */
}

h1 {
    background: #009700;
    background: linear-gradient(to right, #009700 0%, #00DC00 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}



.top {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.image-container {
        mask-image: linear-gradient(to bottom, 
        white 0%,      /* Start fully visible (opaque) at the top */
        white 70%,      /* Maintain full visibility until 70% of the way down */
        transparent 95% /* Fade to fully transparent by 95% of the way down */
    );
}

.top img {
    width: 100%;
    overflow: hidden;
}

.nav {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    gap: 2rem;
    padding-top: 50px;
    padding-bottom: 50px;
    display: block; /* Change nav display to vertical (block or column) */
    text-align: center;
    height: auto;
}

.scramble {
  font-size: 2rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

.scramble:hover {
  color: #0ff;
}

/* 📱 Media Query for screens less than 600px */
@media (max-width: 600px) {
}