body {
    font-family: 'Comic Neue', 'Arial Narrow', Arial, sans-serif;
    color: white;
    background-color: black;
    background-image: url(../assets/background.gif);
    margin: 0;
    overflow-x: hidden;
}


header {
    position: relative; 
    display: flex; 
    flex-direction: column;
    align-items: center;
    height: 100%;
    padding-top: 20px;
}

.noselect {
    -webkit-touch-callout: none; 
      -webkit-user-select: none;
       -khtml-user-select: none; 
         -moz-user-select: none;
          -ms-user-select: none; 
              user-select: none; 
}

.logo {
    margin-bottom: 20px;
    display: block;
    align-items: start;
}

.icon {
    position: absolute;
    top: 0;            
    left: 0;           
    transition: transform 0.3s ease;
    margin-left: 20px;
    max-width: 9%;
    margin-top: 20px;
}

.icon:hover {
    transform: rotate(20deg);
}

.licker {
    visibility: hidden;
}



.globe {
    position: absolute;
    top: 0;            
    right: 0;           
    transition: transform 0.3s ease;
    margin-right: 30px;
    width: 8%;
    margin-top: 30px;
}

.ufo {
    margin-top: 10px;
}

.centered {
    display: flex;
    flex-direction: column;
    align-items: center;
}
a:visited {
    color: rgb(255, 255, 255);
}

button {
    font-family: 'Comic Neue', sans-serif;
    font-size: 20px;
    padding: 4px;
    cursor: url('../assets/Cursor.gif'), auto;
}

.container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.featured {
    padding: 0% 3% 3%;
    margin-top: 3%;
}

.featured img {
    width: 30%;
    padding-bottom: 20px;
    padding-right: 4%;
}

.title, .content {
    width: 100%;
}

.content {
    display: flex;
    align-items: flex-start; 
}

.content a:link {
    color: hotpink;
}

.content a:visited {
    color: hotpink;
}

@media only screen and (max-width: 768px) {

    header img {
        width: 80%;
    }
}

.neocities {
    width: 200px;
}

.clicker {
    font-size: 24px;
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 20px;
}
.counter-container {
    margin-top: 20px;
}
.counter {
    font-size: 36px;
}
.cps-container {
    margin-top: 10px;
}
.cps {
    font-size: 18px;
}

.stickerBox {
    padding: 3%;
    margin-top: 3%;
}

.stickerBox .title {
    margin-bottom: 10px;
}

.stickerBox .content {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.stickerBox .content img {
    width: 5%;
    height: auto;
    cursor: grab;
    position: relative; 
    z-index: 1000;
    transition: transform 0.2s ease-in-out;
    image-rendering: pixelated;
}

.stickerBox .content img:active {
    transform: scale(1.5);
}


.bigSticker {
    width: 10% !important;
    height: auto;
}

#sticker22 {
    visibility: hidden;
}

@media only screen and (max-width: 1168px) {
    .content h1{
        font-size: 150%;
    }

    .stickerBox {
        display: none;
    }
}

.settings-popup {
    position: fixed;
    top: 3%;
    right: 2%;
    width: 25%;
    height: 90%;
    padding: 10px;
    background: #031d2b;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 9999; /* Ensures it is on top of most other elements */
}

.settings-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998; /* Just below the popup */
    display: none;
}

.image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    flex-wrap: wrap;
  }
  
  .image-container a {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 20px;
    text-decoration: none;
    color: inherit;
  }
  
  .image-container img {
    width: 170px;
    height: auto;
    border-radius: 15px;
    transition: transform 0.2s ease-in-out;
    margin-bottom: 10px;
  }
  
  .image-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .image-container p {
    font-size: x-large;
  }
  
  .image-container a {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 10px;
    text-align: center;
    width: 200px; 
  }
  
  .image-container img:hover {
    transform: scale(1.1);
  }
  
  @media (max-width: 768px) {
    .image-container img {
      width: 80%;
      margin: 20px;
    }
  }
  
  @media (max-width: 992px) {
    .image-container {
        margin-bottom: 20px;
    }
  }