.content ul {
  margin-left: 22px;
}
.content ul li {
  margin-bottom: 20px;
}
.content .divider {
  border: none;
  border-top: 2px solid var(--light-green);
  margin: 30px 0;
}

.col {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.interactive-element {
  background-color: rgba(5, 5, 5, 0.4784313725);
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 30px;
}
.interactive-element .quiz-container {
  display: flex;
  flex-direction: column;
}
.interactive-element .question {
  margin-bottom: 20px;
}
.interactive-element .question p {
  font-weight: bold;
}
.interactive-element .question label {
  font-weight: normal;
}
.interactive-element .result {
  margin-top: 20px;
}
.interactive-element .result .flashy-animal-name {
  font-weight: bold;
  display: inline-block;
  color: #ff6347;
  padding: 0 5px;
  animation: bounceIn 2s 1;
}
.interactive-element .result .associated-journal {
  color: #ff6347;
  cursor: pointer;
}
.interactive-element .radio-container {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  color: var(--lighter-green);
  cursor: pointer;
  font-size: 16px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.interactive-element .radio-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.interactive-element .radio-container .radio-custom {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: rgba(204, 204, 204, 0.1960784314);
  border-radius: 50%;
  transition: all 0.3s ease;
}
.interactive-element .radio-container .radio-custom:after {
  content: "";
  position: absolute;
  display: none;
  top: 9px;
  left: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #000;
}
.interactive-element .radio-container:hover input ~ .radio-custom {
  background-color: var(--light-green);
  transform: scale(1.3);
}
.interactive-element .radio-container input:checked ~ .radio-custom {
  background-color: #fbc730;
}
.interactive-element .radio-container input:checked ~ .radio-custom:after {
  display: block;
}
.interactive-element #quiz-navigation {
  display: flex;
  justify-content: center;
  align-items: center;
}
.interactive-element .result {
  margin-top: 20px;
  font-weight: bold;
  color: #2980b9;
}
.interactive-element .button-container {
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
}
.interactive-element .nav-button,
.interactive-element .submit-btn {
  background-color: var(--green);
  color: white;
  border: none;
  padding: 10px 20px;
  margin: 5px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.interactive-element .nav-button:hover,
.interactive-element .submit-btn:hover {
  background-color: var(--light-green);
}
.interactive-element .nav-button:disabled,
.interactive-element .submit-btn:disabled {
  background-color: #95a5a6;
  cursor: not-allowed;
}
.interactive-element .submit-btn {
  background-color: #2ecc71;
  font-weight: bold;
  display: flex;
  position: relative;
  place-self: center;
}
.interactive-element .submit-btn:hover {
  background-color: var(--lighter-green);
  color: var(--dark-brown);
}
.interactive-element .quiz-status {
  font-size: 16px;
  margin: 0 10px;
  color: var(--light-green);
  font-weight: bold;
}

.deep-thoughts-display {
  font-size: 1.5rem;
  margin-top: 20px;
  color: var(--light-green);
  opacity: 0;
  transition: opacity 1s ease-in-out, transform 1s ease-in-out;
  transform: translateY(20px);
}

.deep-thoughts-display.visible {
  opacity: 1;
  transform: translateY(0);
}

.fun-fact-button {
  background-color: var(--lighter-green);
  color: white;
  border: none;
  padding: 10px 20px;
  margin-right: 10px;
  margin-bottom: 10px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.fun-fact-button:hover {
  background-color: #2980b9;
}

.fun-fact-display {
  margin-top: 20px;
  padding: 15px;
  background-color: #f1c40f;
  border-radius: 5px;
  color: #34495e;
}

.image-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.image-container .image-wrapper {
  position: relative;
  width: 30%;
  margin-bottom: 20px;
}
.image-container .image-wrapper img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}
.image-container .image-wrapper .tooltip {
  visibility: hidden;
  width: 200px;
  background-color: #34495e;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -100px;
  opacity: 0;
  transition: opacity 0.3s;
}
.image-container .image-wrapper:hover .tooltip {
  visibility: visible;
  opacity: 1;
}

.hidden-message-image {
  cursor: pointer;
  transition: transform 0.3s ease;
}
.hidden-message-image:hover {
  transform: scale(1.05);
}

.hidden-message {
  display: flex;
  align-items: center;
  background-color: #e74c3c;
  color: white;
  padding: 15px;
  border-radius: 5px;
  margin-top: 20px;
}
.hidden-message .icon {
  margin-right: 10px;
}
.hidden-message p {
  margin-bottom: 0;
}

/* Custom animations */
@keyframes bounceIn {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  80% {
    transform: scale(1.2);
    opacity: 1;
  }
  100% {
    transform: scale(1);
  }
}
@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-10px);
  }
  50% {
    transform: translateX(10px);
  }
  75% {
    transform: translateX(-10px);
  }
}
@media (max-width: 768px) {
  .image-container .image-wrapper {
    width: 100%;
  }
}/*# sourceMappingURL=about.css.map */