/* Default styles */
* {
  padding: 0;
  margin: 0;
  color: #e8eaed;
  font-family: 'Oswald', sans-serif;
  box-sizing: border-box;
}

a,
p {
  font-size: 17px;
}

a,
h1 {
  text-decoration: none;
  color: inherit;
  text-shadow: 0 0 7px #57ca85, 0 0 14px #57ca85;
}

img {
  padding: 3px;
}

h1,
.center {
  text-align: center;
}

p img {
  vertical-align: middle;
}
/* End Default styles */


/* Common containers */
.wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
}

.wrapper::before {
  content: "";
  position: fixed;
  width: 100%;
  height: 300%;
  bottom: 0;
  background: #00000099;
  z-index: -55;
}

.wrapper::after {
  content: "";
  position: fixed;
  width: 100%;
  height: 100%;
  background: url("images/back.gif");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -100;
}

.content {
  max-width: 800px;
  margin: 15px;
  margin-top: 10%;
  background-color: #1717178c;
  padding: 13px;
  box-shadow: 0 0 7px #57ca85;
}
/* End Common containers */


/* Donations */
.highlight {
  background-color: #000;
  color: #57ca85;
  font-size: 14px;
  text-shadow: none;
  display: inline-block;
  overflow: auto;
  max-width: 500px;
  width: 100%;
  scrollbar-width: none;
}

.webring img {
  width: 88px;
  height: 31px;
}
/* End Donations */


/* Index */
.main {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  gap: 100px;
  margin-bottom: 15px;
  width: 100%;
  max-width: 950px;
}

.widgets {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

#widget-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.widget-container a {
  color: inherit;
}

.widget {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 265px;
  height: 215px;
  margin: 10px;
  background-color: #1717178c;
  transition: 0.3s;
}

.widget span {
  margin-top: 15px;
  font-size: 25px;
  font-weight: bold;
}

.widget:hover {
  opacity: 0.6;
  cursor: pointer;
}

.neon-text {
  text-shadow: 0 0 7px #57ca85, 0 0 14px #57ca85;
  margin: auto;
  margin-top: 5%;
  cursor: pointer;
}

.neon-box:hover {
  box-shadow: 0 0 7px #57ca85;
}

.footer {
  position: absolute;
  bottom: 15px;
  width: 100%;
  max-width: 950px;
}
/* End Index */


/* VPN */
.content_vpn {
  margin-top: 3%;
}
/* End VPN */


/* Responsiveness */
@media only screen and (max-width: 950px) {
  .neon-text {
    margin-left: 3%;
    margin-right: 3%;
  }

  .footer {
    position: relative;
    margin-top: 15px;
  }
}

@media only screen and (max-height: 800px) {
  .neon-text {
    margin-left: 3%;
    margin-right: 3%;
  }

  .footer {
    position: relative;
    margin-top: 15px;
  }
}

@media only screen and (max-width: 700px) {
  .center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
  }

  .coin {
    max-width: 300px;
    width: 100%;
  }
}
/* End Responsiveness */


/* Scroll animation */
.scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  background-color: #57ca8599;
  box-shadow: 0px 0px 10px 7px #57ca8555;
  width: 100%;
  height: 5px;
  scale: 0 1;
  pointer-events: none;
  transform-origin: left;
  animation: scaleUp linear;
  animation-timeline: scroll();
}

.right-to-left {
  top: auto;
  bottom: 0;
  transform-origin: right;
}

.bottom-to-top {
  height: 100%;
  width: 5px;
  scale: 1 0;
  transform-origin: bottom;
}

.top-to-bottom {
  right: 0;
  left: auto;
  height: 100%;
  width: 5px;
  scale: 1 0;
  transform-origin: top;
}

@keyframes scaleUp {
  to {
    scale: 1 1;
  }
}
/* End Scroll animation */


/* Header animation */
.txt {
  font-weight: bold;
  font-size: 30px;
  fill: #57ca8511;
  stroke: #57ca85;
  font-family: cursive;
  stroke-width: 10;
  animation: 2s stk ease-out forwards;
}

@keyframes stk {
  0% {
    stroke-width: 3;
    stroke-dasharray: 1111;
  }

  25% {
    stroke-width: 2;
    stroke-dasharray: 1111;
  }

  100% {
    stroke-width: 1;
    stroke-dasharray: 1111;
  }
}
/* End Header animation */