/* BACKGROUND */
body {
  font-family: MS gothic;
  margin: 0;
  padding: 0;
  height: 100vh;
  display: block;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  overflow: hidden;
  background-image: linear-gradient(
      to bottom,
      transparent 19px,
      #c8bfe7 20px,
      transparent 21px
    ),
    linear-gradient(to right, transparent 19px, #c8bfe7 20px, transparent 21px),
    linear-gradient(to bottom, #c8bfe7 1px, transparent 1px),
    linear-gradient(to right, #c8bfe7 1px, transparent 1px);
  background-size: 20px 20px, 20px 20px, 40px 40px, 40px 40px;
  background-position: 0 0, 0 0, 0 0, 0 0;
  background-repeat: repeat, repeat, repeat, repeat;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* TEXT BOX */
.container {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  margin-top: 5%;
  z-index: 2;
}

.heading {
  font-size: 40px;
  color: #333333;
  margin-bottom: 30px;
  background-color: #998cc7;
  display: inline-block;
  padding: 5px 10px;
  border-radius: 5px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  z-index: 2;
}

.box {
  border: 2px solid #998cc7;
  padding: 30px;
  border-radius: 12px;
  width: 80%;
  max-width: 750px;
  background-color: #ffffff;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 2;
}

.box p {
  font-size: 16px;
  color: #555555;
  font-weight: bold;
  line-height: 1.6;
}

/* SOCIAL MEDIA BUTTONS */
.social-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 40px;
  z-index: 3;
  text-align: center;
  margin-bottom: 30px;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 10px 15px;
  background-color: #ffffff;
  border-radius: 30px;
  border: 2px solid transparent;
  transition: transform 0.3s ease, box-shadow 0.3s ease,
    background-color 0.3s ease, color 0.3s ease;
  text-decoration: none;
  color: #333333;
}

.social-btn img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  transition: filter 0.3s ease;
}

.social-btn span {
  font-size: 14px;
  font-weight: 500;
}

.bluesky {
  border-color: #38a1db;
  color: #38a1db;
}

.youtube {
  border-color: #ff0000;
  color: #ff0000;
}

.twitch {
  border-color: #9146ff;
  color: #9146ff;
}

.kofi {
  border-color: #ff6433;
  color: #ff6433;
}

.social-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  background-color: #333333;
  color: #ffffff;
  border-color: #333333;
}

.bluesky:hover {
  background-color: #38a1db;
  color: #ffffff;
  border-color: #38a1db;
}

.youtube:hover {
  background-color: #ff0000;
  color: #ffffff;
  border-color: #ff0000;
}

.twitch:hover {
  background-color: #9146ff;
  color: #ffffff;
  border-color: #9146ff;
}

.kofi:hover {
  background-color: #ff6433;
  color: #ffffff;
  border-color: #ff6433;
}

.bluesky:hover img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(100%)
    hue-rotate(0deg);
}

.youtube:hover img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(100%)
    hue-rotate(0deg);
}

.twitch:hover img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(100%)
    hue-rotate(0deg);
}

.kofi:hover img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(100%)
    hue-rotate(0deg);
}

/* FLOATING IMAGE */
.float {
  position: fixed;
  bottom: 0px;
  right: 0px;
  z-index: 1;
  height: auto;
}

.float img {
  width: 75px;
  height: auto;
  position: absolute;
  bottom: 25px;
  right: 25px;
  filter: drop-shadow(3px 3px 0.7px rgba(0, 0, 0, 0.5));
  transition: transform 0.3s ease;
}

.float img:hover {
  transform: scale(1.2);
}

/* FOOTER */
footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #998cc7;
  height: 30px;
  z-index: 0;
}