/* General Reset */
body,
html {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Comic Sans MS", cursive, sans-serif; /* Replace with your desired meme font */
  height: 100%;
  display: flex;
  flex-direction: column;
}

#site-title {
  background: linear-gradient(
    to left,
    rgb(255, 191, 202) 0% 22%,
    rgb(139, 255, 174) 26% 45%,
    rgb(255, 195, 225) 51% 70%,
    rgb(255, 255, 71) 75% 93%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Gradient Background */
body {
  background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
  color: #fff;
  animation: gradient 10s ease infinite;
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Header */
header {
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  max-width: 1200px;
}

.text-content {
  flex: 1;
}

header h1 {
  font-size: 3rem;
  text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.7);
  margin-bottom: 10px;
}

header .slogan {
  font-size: 1.2rem;
  font-style: italic;
  animation: wave 5s infinite;
}

@keyframes wave {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

header .logo-placeholder {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-size: 95%;
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url('images/logo.png');
  /* background-color: #dacbff; */
  display: inline-block;
}

/* Main Content */
main {
  flex: 1;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 20px;
  gap: 20px;
}

.image-placeholder {
  width: 25%;
  height: 100%;
  background-image: url('images/me.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
    border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}



.links {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.links a {
  display: block;
  margin: 10px 0;
  padding: 15px 30px;
  font-size: 1.5rem;
  color: #fff;
  text-decoration: none;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 50px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.links a:hover {
  transform: scale(1.1);
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.8);
}

/* Footer */
footer {
  text-align: center;
  padding: 15px;
  font-size: 0.9rem;
  background: rgba(0, 0, 0, 0.5);
}

footer a {
  color: #fff;
  text-decoration: underline;
}

.bg-div {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/bg.gif'); /* Replace with your image URL */
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-blend-mode: darken;
    border-radius: 15px; /* Adjust the radius for different ellipse shapes */
    z-index: -1; /* Place it behind other elements */
    opacity: 0.2;
}
.footer-title{
    color:greenyellow;
    size: 0.9rem;
    font-weight:bold;
}