body {
  background-image: linear-gradient(to bottom, #0059ff, #3400c4);
  }
  
  .text {
    font-family: "Comic Sans MS", cursive;
    color: cyan;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 10px;
  }
  .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 50px;
  }
  
  .image {
    width: 350px;
    height: 300px;
    object-fit: cover;
    max-width: 100%;
    height: auto;
    vertical-align: middle;
    border-radius: 5px;
  }
  .bottom-text {
    text-align: center;
    margin-top: 20px;
    font-size: 18px;
    background-color: #2e00ac;
  }
 .href {
  color: rgb(0, 102, 255);
 }
 .bookmark {
  position: fixed;
  top: 20px; /* Adjust the distance from the top as needed */
  height: 50px;
  width: 50px;
  display: flex;
  flex-direction: column; /* Display icon on top */
  align-items: center;
  justify-content: flex-start; /* Align icon to the top */
  border-radius: 50%;
  background-color: #007bff; /* Replace with your desired color */
  color: #fff; /* Replace with your desired color */
  cursor: pointer;
}

.bookmark-home {
  left: 500px;
}

.bookmark-components {
  right: 500px;
}

.icon {
  font-size: 24px;
  margin-top: 5px; /* Add some spacing between the icon and the top edge */
}
.bookmark.neon-effect {
  animation: neonEffect 1s infinite alternate;
}

@keyframes neonEffect {
  0% {
    box-shadow: 0 0 10px rgb(255, 0, 0), 0 0 20px rgb(0, 255, 0), 0 0 30px rgb(0, 0, 255); /* Initial neon effect with RGB values */
  }
  100% {
    box-shadow: none; /* Reset the box shadow after the animation */
  }
}
