body {
  background-color: white;
}
/* Basic styling for the sname text */
        .sname {
        font-weight: 700;
        font-size: 40px;
        text-transform: uppercase;
        margin-top: 20px;
        margin-bottom: 5px;
        animation: swing 4s infinite;
        overflow-wrap: break-word;
        }
        .sname1 {
        font-weight: 700;
        font-size: 25px;
        text-transform: uppercase;
        margin-top: 20px;
        margin-bottom: 5px;
        animation: swing 4s infinite;
        overflow-wrap: break-word;
        }
        /* Apply background image only to text */
        .emoji-free {
        background: url("https://fastly.jsdelivr.net/gh/cdnamd/26img/main/sname.gif");
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        color: transparent;
        }
        
        /* Apply default color to emojis */
        .emoji {
        color: black; /* Set the emoji color to black */
        background: none; /* Remove background for emojis */
        }
@keyframes swing {
  20% {
    -webkit-transform: rotate(7deg);
    transform: rotate(7deg);
  }
  40% {
    -webkit-transform: rotate(-7deg);
    transform: rotate(-7deg);
  }
  60% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }
  80% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }
}
.container {
  max-width: 450px;
  min-height: 200px;
  margin: 0 auto;
  text-align: center;
  padding-bottom: 60px;
}
.GodMessage {
  color: #fff;
  font-size: 22px;
  font-weight: bold;
  margin-top: 20px;
  text-shadow: 0px 0px 10px #afafaf;
}
.GodMessage p {
  margin: 0.3em 0;
}
.line1 {
  text-shadow: 1px 1px 3px black, 1px 1px 3px black, -1px -1px 3px black,
    -1px -1px 3px black;
  color: #f7b30b;
}
.line2 {
  text-shadow: 1px 1px 3px black, 1px 1px 3px black, -1px -1px 3px black,
    -1px -1px 3px black;
  color: #b7f70b;
}
.line3 {
  text-shadow: 1px 1px 3px black, 1px 1px 3px black, -1px -1px 3px black,
    -1px -1px 3px black;
  color: #f1948a;
}
.line4 {
  text-shadow: 1px 1px 3px black, 1px 1px 3px black, -1px -1px 3px black,
    -1px -1px 3px black;
  color: #7fb3d5;
}
.line5 {
  text-shadow: 1px 1px 3px black, 1px 1px 3px black, -1px -1px 3px black,
    -1px -1px 3px black;
  color: #e59866;
}
.line6 {
  text-shadow: 1px 1px 3px black, 1px 1px 3px black, -1px -1px 3px black,
    -1px -1px 3px black;
  color: #b7f70b;
}
/* Footer input styles for index.html */
.footer input[type="text"] {
  background-color: #bb1313;
  color: #ffffff;
  border-radius: 10px;
  box-sizing: border-box;
  animation: nudge 2s linear infinite alternate;
  border: 3px solid #f76d2d;
  padding: 5px;
  position: fixed;
  left: 2px;
  bottom: 5px;
  height: 60px;
  width: 69%;
  text-align: center;
  font-size: 22px;
  display: inline-block;
}
.footer input:focus {
    animation: none;
}
.footer .submit {
  border-radius: 10px;
  font-size: 22px;
  padding: 4px;
  position: fixed;
  right: 2px;
  bottom: 5px;
  height: 60px;
  width: 30%;
  display: inline-block;
  color: #ffffff;
  background-color: #20761c;
  animation: nudge 2s linear infinite alternate;
  border: 2px solid #f76d2d;
  letter-spacing: 0.5px;
  transition: 0.2s ease-out;
  cursor: pointer;
  line-height: 36px;
  outline: 0;
  vertical-align: middle;
  text-decoration: none;
}
.footer input[type="text"]::-webkit-input-placeholder {
  color: white;
  font-size: 18px;
}
.footer input[type="text"]::-moz-placeholder {
  color: white;
  font-size: 18px;
}
.footer input[type="text"]:focus::-webkit-input-placeholder {
  color: white;
  font-size: 18px;
}
.footer input[type="text"]:focus::-moz-placeholder {
  color: white;
  font-size: 18px;
}
@keyframes nudge {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(0.8);
  }

  80% {
    transform: scale(1);
  }
}
.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}
@keyframes pulse {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}
.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}
@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }

  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes tada {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
  }
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
  }
  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
  }
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}
.m1 {
  position: fixed;
  left: 1%;
  width: auto;
  height: 100%;
  top: 1%;
  color: #000;
  white-space: pre;
}
.m2 {
  position: fixed;
  right: 1%;
  width: auto;
  height: 100%;
  top: 1%;
  color: #000;
  white-space: pre;
}
a {
  text-decoration: none;
  color: inherit;
}
/* Curtain styles for index.html */
.leftcurtain {
  width: 50%;
  height: 100%;
  top: 0px;
  left: 0px;
  position: absolute;
  z-index: 2;
}
.rightcurtain {
  width: 50%;
  height: 100%;
  right: 0px;
  top: 0px;
  position: absolute;
  z-index: 3;
}
.rightcurtain img,
.leftcurtain img {
  width: 100%;
  height: 100%;
}
.logo {
  margin: 0px auto;
  margin-top: 150px;
}
.rope {
  position: absolute;
  top: 5px;
  left: 35%;
  z-index: 4;
}
.centered {
  position: absolute;
  top: 75%;
  left: 50%;
  transform: translate(-50%, -50%);
}
a.rope {
  text-decoration: none;
  align-items: center;
  text-align: center;
  white-space: pre;
}
a div {
  font-size: 25px;
  text-shadow: 1px 1px 3px white, 1px 1px 3px white, -1px -1px 3px white,
    -1px -1px 3px white;
  color: red;
  font-weight: bold;
  line-height: normal;
}
/* Share button styles for wish.html */
.shareBtn {
  position: fixed;
  right: calc(50% - 145px);
  bottom: 5px;
  width: 300px;
  height: 60px;
  background-color: #007f00;
  border-radius: 100px;
  color: white;
  line-height: 60px;
  text-align: center;
  letter-spacing: 1px;
  overflow: hidden;
  animation: footer infinite linear 1s;
  transition: all .3s cubic-bezier(.67,.13,.1,.81), transform .15s cubic-bezier(.67,.13,.1,.81);
}
.shareShow {
  position: fixed;
  right: calc(50% - 45px);
  bottom: 5px;
  width: 100px;
  height: 60px;
  background-color: brown;
  border-radius: 100px;
  color: white;
  line-height: 60px;
  text-align: center;
  letter-spacing: 1px;
  overflow: hidden;
  transition: all .3s cubic-bezier(.67,.13,.1,.81), transform .15s cubic-bezier(.67,.13,.1,.81);
}
.platforms {
  position: fixed;
  right: calc(50% - 145px);
  height: 100px;
  width: 300px;
  bottom: 65px;
  border-radius: 5px;
  visibility: hidden;
  transform: scale(.9);
  overflow: hidden;
}
.platforms:target {
  visibility: visible;
  transform: scale(1);
  opacity: 1;
}
.platforms a {
  position: absolute;
  width: 90px;
  height: 90px;
  border-radius: 5px;
  color: #3F8EFC;
  text-transform: uppercase;
}
.platforms a:nth-child(1) {
  background-color: #1A5276;
  left: 60px;
}
.platforms a:nth-child(2) {
  background-color: #1A5276;
  left: 155px;
}
.platforms:target a {
  top: 5px;
}
.platforms a:hover {
  background: #000;
  box-shadow: 0 0 0 1px #A5CFFF;
}
.platforms a:before {
  content: attr(data-os);
  position: absolute;
  color:white;
  bottom: 5px;
  left: 0px;
  width: 100%;
  font-size: 12px;
  text-align: center;
}

