/* Custom Fonts */
@font-face {
  font-family: alkhemikal;
  src: url(../fonts/Alkhemikal.ttf);
}
@font-face {
  font-family: paskowy;
  src: url(../fonts/Paskowy.ttf);
}
@font-face {
  font-family: greenscr;
  src: url(../fonts/Greenscr.ttf);
}
@font-face {
  font-family: pixelmix;
  src: url(../fonts/pixelmix.ttf);
}

/* index.css Tags */
html {
  background-image: url("../images/cat.gif");
  background-repeat: repeat;
  background-size: auto;
  margin: 0;
  padding: 0;
  margin-left: 20%;
  margin-right: 20%;
  z-index: -1;
}

/* Main Header Tags Section */
#main-header-tags {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.text-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.tag-title {
  font-family: greenscr;
  font-size: 375%;
  color: white;
  margin-top: 5%;
}

.tag-subtitle {
  font-family: paskowy;
  color: white;
  font-size: 275%;
  margin-top: 1%;
}

.image-container {
  display: flex;
  flex-shrink: 0;
  margin-left: auto;
  justify-content: flex-end;
}

.image-container img {
  max-width: 70%;
  height: auto;
}

/* Moving image behind elements */
.moving-image {
  position: absolute;
  top: 0;
  left: -100%; /* Start outside the screen */
  z-index: -1; /* Send the image behind other elements */
  width: 100%;
  height: auto;
  opacity: 0.7; /* Adjust opacity if needed */
  animation: moveImage 15s linear infinite;
}
#cat-image {
  cursor: pointer;
}

/* About Me Section */
.about-me-section {
  padding: 10px;
  border-top-left-radius: 8px;
  border-bottom-right-radius: 8px;
  border: 3px solid white;
  background-color: black;
}

.cap-blue {
  color: #12abdb;
}

.about-me-text {
  font-family: greenscr;
  color: white;
  text-align: center;
}

/* Links Section */
.links-section {
  margin-top: 5%;
  display: flex;
  justify-content: center;
}

.nav-links {
  display: flex;
  justify-content: space-around; /* Evenly spaces the links */
  width: auto; /* Adjust width as needed */
}

.nav-links a {
  color: #12abdb; /* Link color */
  font-family: greenscr; /* Replace with your desired font */
  font-size: 150%; /* Adjust font size as needed */
  text-decoration: none; /* Remove underline from links */
  margin: 0 15px;
}

.nav-links a:hover {
  text-decoration: underline; /* Optional: underline links on hover */
  color: white;
}

/* Bio Section */
#bio-section {
  border-top-left-radius: 8px;
  border-bottom-right-radius: 8px;
  border: 3px solid white;
  background-color: black;
  margin-bottom: 25px;
  margin-top: 5%;
}
.bio-text {
  color: white;
  padding-top: 20px;
  padding-right: 15px;
  padding-left: 15px;
  font-family: greenscr;
  font-size: 15px;
}
.bio-link-image-container {
  display: flex;
  flex-direction: row;
  justify-content: left;
  align-items: center;
  padding-left: 15px;
  padding-bottom: 20px;
}
.bio-link-image-item {
  height: 40px;
  width: 40px;
}

