.mainWrapper {
  max-width: 1200px;
}

@media (max-width: 600px) {
  .mainWrapper {
    max-width: 600px;
  }
}
.logoimg {
  max-width: 200px;
}

.coverimg {
  max-width: 100%;
}

.link {
  margin-bottom: 20px;
  border: 1px solid #eee;
  border-radius: 10px;
  cursor: pointer;
}

.linkiconwrapper {
  width: 20%;
  padding: 5px;
}

.linkicon {
  object-fit: contain;
  max-width: 50px;
}

.linkcontentwrapper {
  width: 79%;
  padding: 5px;
}

.linktitle {
  display: block;
  color: var(--color1);
  margin-top: 10px;
}

.linkdescription {
  display: block;
  color: var(--color2);
}

.socialiconwrapper img {
  max-width: 40px;
}

.pagetitle {
  color: var(--color1);
}

.pagedescription {
  color: var(--color2);
}

#oneClickWrapper {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #f1f1f1;
  padding: 0px;
  text-align: center;
  transition: opacity 0.5s ease; /* Apply transition effect */
  opacity: 0; /* Initially hidden */
}

#credits a,
#credits p {
  color: var(--color1);
}

#aboutus p {
  text-align: justify;
}

.modalButtons {
  background-color: var(--color1);
  color: var(--bgcolor);
  padding: 5px 15px;
  border-radius: 20px;
  text-decoration: none;
  margin: 0px 5px;
  cursor: pointer;
}

#menuToggle {
  display: block;
  position: fixed;
  top: 20px;
  z-index: 999999;
  -webkit-user-select: none;
  user-select: none;
  background: #333333dd;
  width: 70px;
  height: 42px;
  right: -10px;
  padding: 10px 15px;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}

#menuToggle input {
  display: block;
  width: 40px;
  height: 32px;
  position: absolute;
  top: -7px;
  left: -5px;

  cursor: pointer;

  opacity: 0; /* hide this */
  z-index: 2; /* and place it over the hamburger */

  -webkit-touch-callout: none;
}

/*
  * Just a quick hamburger
  */
#menuToggle span {
  display: block;
  width: 33px;
  height: 4px;
  margin-bottom: 5px;
  position: relative;

  background: #ffffff;
  border-radius: 3px;

  z-index: 1;

  transform-origin: 4px 0px;

  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1),
    background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease;
}

#menuToggle span:first-child {
  transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2) {
  transform-origin: 0% 100%;
}

#menuToggle input:checked ~ span {
  opacity: 1;
  transform: rotate(45deg) translate(-2px, -1px);
  background: #777;
}

#menuToggle input:checked ~ span:nth-last-child(3) {
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}

#menuToggle input:checked ~ span:nth-last-child(2) {
  transform: rotate(-45deg) translate(0, -1px);
}

.sectionContainer {
  color: var(--color1);
  margin-top: 30px;
}


.oneclick {
  display: table;
  table-layout: fixed;
  width: 100%;
  height: 50px;
  position: fixed;
  bottom: 0px;
  max-width: 500px;
  z-index: 999999;
}
.oneclick a,
.oneclick a:hover,
.oneclick a:active {
  background-color: #222;

  display: table-cell;
  height: 40px;
  text-align: center;
  vertical-align: middle;
  font-size: 24px;
  border-right: 1px solid #555;
  text-decoration: none;
}

.chatnumber {
  position: absolute;
  top: 0px;
  right: 0px;
  color: white;
  background: red;
  border-radius: 50%;
  padding: 3px;
  font-size: 10px;
  width: 15px;
  height: 15px;
  margin: 5px;
}

.heartbeat_animation {
  animation: heartbeat 2s infinite;
}


@keyframes heartbeat {
  0%, 100% {
      transform: scale(1);
  }
  25% {
      transform: scale(1.1);
  }
  50% {
      transform: scale(0.9);
  }
  75% {
      transform: scale(1.1);
  }
}
