@import url("https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Special+Gothic+Expanded+One&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Smooch+Sans:wght@100..900&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

/* Reset default spacing and box sizing */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  cursor: url(cursor_32x32.png), auto;
}

/* Body background with gradient */
body {
  min-height: 100vh;
  background: linear-gradient(
    to right,
    rgb(118, 118, 243),
    rgb(80, 80, 230),
    rgb(38, 38, 221)
  );
  overflow: hidden;
}

.out-div {
  height: 90vh;
}

/* Footer styling */
footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: rgb(66, 58, 58);
  padding: 20px;
  overflow: visible;
  margin-top: 150px;
}

/* Container for icons */
.icon-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
}

/* Individual icons */
.icons {
  width: 40px;
  height: 40px;
  display: inline-block;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Blur effect for icons on hover */
.icon-container:hover .icons {
  filter: blur(2px);
}

/* Focused hover effect for the icon being hovered */
.icon-container:hover .icons:hover {
  filter: blur(0px);
  transform: translateY(-5px);
}

/* Tooltip wrapper (wrap around img) */
.tooltip {
  position: relative;
  display: inline-block;
}

/* Tooltip bubble */
.tooltip::after {
  content: attr(data-tooltip); /* Get value from data-tooltip attribute */
  position: absolute;
  bottom: 130%; /* Place tooltip above the icon */
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.85);
  color: #fff;
  font-family: "Roboto", sans-serif;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 13px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 999;
}

/* Show tooltip on hover */
.tooltip:hover::after {
  opacity: 1;
}

.card {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 500px;
  height: 450px;
  margin: 0 auto;
  position: relative;
  top: 50px;
  background-color: whitesmoke;
  box-shadow: 0 0 15px 5px rgba(0, 0, 0, 0.438);
  border-radius: 5px;
}

.card .content {
  display: inline-block;
  height: auto;
  width: 85%;
}

.card .content h2 {
  text-align: center;
  font-size: 30px;
  color: black;
  font-family: "Special Gothic Expanded One", sans-serif;
  text-decoration: underline;
  display: inline-block;
  margin-left: 25px;
}

.card .content span a,
img {
  width: 40px;
  height: 40px;
  vertical-align: middle;
  margin-left: 10px;
  padding: 0 0 5px 0;
}

.card .content p {
  text-align: justify;
  word-spacing: -2px;
  font-size: 20px;
  color: black;
  font-family: "Roboto Mono", monospace;
}

.card .content p::first-letter {
  font-size: 30px;
  font-weight: bold;
  color: #555353;
}

.card .content h3 {
  font-family: "Open Sans", sans-serif;
  margin-top: 15px;
}

.card .content ul {
  list-style-type: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 30px;
  font-family: "Smooch Sans", sans-serif;
  font-size: 25px;
  text-align: start;
}

.content hr {
  height: 5px;
  background: linear-gradient(
    to right,
    rgb(230, 60, 187),
    rgb(231, 78, 78),
    rgb(228, 17, 17)
  );
}
