body {
  overflow-y: hidden;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #141414;
  font-family: Arial, sans-serif;
  color: #adadad;
}

body {
  user-select: none; /* Disable text selection */
}

#wobbleText {
height: 50px; /* Adjust the height as needed */
overflow: hidden;
}

.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #141414;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  z-index: 9999;
}

#issue-description {
  width: 265px;
  border: none;
  outline: none;
}

.report-button {
  visibility: hidden;
  padding: 5px 10px;
  font-size: 0.8rem;
  background-color: #ad2525;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

#send-button {
  padding: 5px 10px;
  font-size: 0.8rem;
  background-color: #ad2525;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  
}


.report-button-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}

.custom-popup-container {
  display: none; 
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}

.custom-popup-box {
  background-color: #252525;
  border-radius: 10px;
  padding: 20px;
  width: 300px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  position: relative;
  max-width: 80%;
  max-height: 80%;
  overflow: auto;
  align-items: center;
}

.popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  font-size: 1rem;
  color: red;
  cursor: pointer;
}


.container {
  text-align: center;
}

#onehack {
  color: orange;
}

#huge-space {
  margin-top: 75px;
}

#f {
  color: #8f8a8a;
}

.title {
  font-size: 2rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(65, 65, 65, 0.5);
}

.animation {
  text-shadow: 2px 2px 4px rgba(65, 65, 65, 0.5);
  color: #8f8a8a;
  font-size: 0.9rem;
}

#typed-text {
  display: inline;
}

#cursor {
  display: inline;
  animation: blink 0.7s infinite;
}

@keyframes blink {
  0%,
  100% {
      opacity: 1;
  }
  50% {
      opacity: 0;
  }
}

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  overflow: hidden;
}

.popup-box {
  background-color: #1a1a1a;
  border-radius: 10px;
  width: 80%;
  max-width: 80%;
  max-height: 80%;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
}

.popup-content {
  scrollbar-width: thin;
  scrollbar-color: #7f7f7f rgba(0, 0, 0, 0.3);
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #fff;
  flex: 1;
  overflow: auto;
}

.popup-content::-webkit-scrollbar {
  width: 8px;
}

.popup-content::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.3);
}

.popup-content::-webkit-scrollbar-thumb {
  background-color: #7f7f7f;
  border-radius: 10px;
}

.popup-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #fff;
  text-align: center;
}

.popup-content {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #fff;
  flex: 1;
}

.popup-accept {
  text-align: center;
  padding: 0px;
  background-color: #1a1a1a;
}

.icon-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

.icon-buttons a {
  margin: 0 10px;
  display: inline-block;
}

.icon-buttons img {
  width: 25px;
  height: 25px;
}

#accept-button {
  visibility: hidden;
  padding: 10px 20px;
  font-size: 1.2rem;
  background-color: #4caf50;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

#accept-text {
  visibility: visible;
  color: #d11e1e;
  text-align: center;
}

.notification-container {
position: fixed;
top: 20px;
left: 20px;
z-index: 1000;
}

.notification-box {
background-color: #444;
border: 2px solid #ff0000;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
display: flex;
align-items: center;
padding: 10px;
max-width: 300px;
opacity: 0;
transform: translateX(-100%);
animation: slideIn 1s forwards 1s, fadeIn 1s forwards 1s;
margin-bottom: 10px;
}

.notification-icon {
margin-right: 10px;
}

.notification-icon img {
width: 30px;
height: 30px;
}

.notification-content {
color: #fff;
}

.out-anim {
  animation: slideOut 1s backwards 1s, fadeOut 1s backwards 1s;
}

@keyframes slideIn {
0% {
  transform: translateX(-100%);
}
100% {
  transform: translateX(0);
}
}

@keyframes slideOut {
  100% {
    transform: translateX(-100%);
  }
  0% {
    transform: translateX(0);
  }
}

@keyframes fadeIn {
0% {
  opacity: 0;
}
100% {
  opacity: 1;
}
}

@keyframes fadeOut {
  100% {
    opacity: 0;
  }
  0% {
    opacity: 1;
  }
}

.snow-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.snowflake {
  position: absolute;
  width: 2px;
  height: 2px;
  background-color: #fff;
  border-radius: 50%;
  opacity: 0.4;
  pointer-events: none;
  animation: fall linear infinite;
}

@keyframes fall {
  to {
    transform: translateY(100vh);
  }
}

/* ------------------------------------------------------------------------------------------------------------- */

  /* Add styles for snowflakes */
  .snowflake {
      position: fixed;
      background: #fff;
      width: 5px;
      height: 5px;
      border-radius: 50%;
      pointer-events: none;
      opacity: 0.7; /* Adjust opacity as needed */
    }
    
.button-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.button-buttons button {
  margin-top: 10px;
  padding: 10px 20px;
  background-color: #c96239;
  color: #000000;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.3s;
}

.button-buttons button:hover {
  background-color: #ff5100;
}

.container.text-center.mt-5 {
display: flex;
flex-direction: row;
justify-content: space-around;
align-items: flex-start;
flex-wrap: wrap;
}

.button-container {
width: 250px; /* Adjust the width as needed */
margin: 10px; /* Add margin between the containers */
}

.button-title {
font-size: 18px; /* Adjust font size as needed */
}

.button-description {
font-size: 14px; /* Adjust font size as needed */
}

.button-image {
width: 100%;
height: 150px; /* Adjust height as needed */
object-fit: cover;
margin-top: 10px; /* Add margin as needed */
}

.btn-secondary {
width: 100%;
margin-top: 10px; /* Add margin as needed */
}

.row.my-4 {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.button-image {
  border-radius: 8px; /* Adjust the value to control the roundness */
  width: 100%;
  height: 100%;
  object-fit: cover;
}


