/* Basic reset */

/* Keyframes for Animations */
@keyframes fadeIn {
  0% { opacity: 0; transform: translateY(20px); filter: blur(10px); }
  100% { opacity: 1; transform: translateY(0); filter: blur(0px); }
}

.content {
  margin: auto;

  padding: 0;
  box-sizing: border-box;
  font-family: 'Lexend', serif;
background-color: black;
box-shadow: 10px 10px 10px rgba(0,0,0,0.5);

border-radius: 4px;
  background-size: 100% 100%;
  max-width: 900px;
  animation: fadeIn 1s ease-out;
}

/* Neon gradient background */
body {
  animation: glow 250s linear infinite;
  color: #C8EDF0; 
  min-height: 100vh;
background: linear-gradient(146deg, rgba(115,138,113,1) 0%, rgba(142,117,143,1) 43%, rgba(177,92,92,1) 100%); 
  background-size: 100% 100%; /* Increase size to prevent tiling */
  background-repeat: no-repeat;
  background-attachment: fixed;
  height: 100%;
  display: flex;
  flex-direction: column;
}


a {
  color: hotpink;
}

html {

  height: 100%;
}

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

header {


  margin: 20px auto;
  text-align: center;
  
}

header h1 {
  font-size: 4rem;

  color: #AEE2A1;
  /*text-shadow: 0 0 20px #ff007a, 0 0 40px #ff00ff;*/
  animation: flicker 2s infinite alternate;
  text-align: center;
  margin-bottom: 0;
}

@keyframes flicker {
  0% { opacity: 1; }
  50% { opacity: 0.8; }
  100% { opacity: 1; }
}

nav a {
  margin: 0 15px;
  text-decoration: none;
  font-size: 1.2rem;
  color: #E2A1D9;

  transition: color 0.3s;
    text-transform: lowercase;

}

nav a:hover {
  color: #E2A1A1;
  text-shadow: 0 0 15px #ff007a, 0 0 30px #ff00ff;
}

section {


  margin: 20px auto;
  text-align: left;
  padding: 10px;
  
    /*
  background-color: rgba(0, 0, 0, 0.8);
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
  */

}

section2 {


  margin: 20px auto;
  text-align: center;
  padding: 20px;
  
    /*
  background-color: rgba(0, 0, 0, 0.8);
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
  */

}

h2 {
  font-size: 2rem;

  text-transform: lowercase;
  color:  #E2A1A1 ;
  text-align: center;
  /*text-shadow: 0 0 10px #ff007a, 0 0 20px #ff00ff;*/
}

.project {
  margin: 20px 0;
  padding: 20px;
background: linear-gradient(146deg, rgba(15,18,14,1) 0%, rgba(46,27,47,1) 43%, rgba(42,9,9,1) 100%);
  text-align: left;

  border-radius: 4px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.project:hover {

  transform: scale(1.01);
}

.project h3 {
  color: #BDEBC3;

}

footer {
  margin: 30px 0;
  color: white;
  text-shadow: 0 0 10px #00ffcc;
  text-align: center;
}



/* Glitch animation */
@keyframes glitch {
  50% { transform: translate(0px, 1px); }
  100% { transform: translate(0px, -1px); }


}

h1:hover {
  animation: glitch 0.1s infinite;
}

/* Image Grid */
.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  margin-top: 20px;
}

figure {
  background-color: #3a3a3a; /* Slightly lighter background */
  border-radius: 8px;
  overflow: hidden;

  margin: auto;
}

figure img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s, filter 0.3s;
}



figcaption {
  padding: 10px;
  font-size: 0.9rem;
  color: #b0b0b0; /* Light gray for captions */
}

/* Download Section */
#download a {
  display: inline-block;
  padding: 10px 20px;
  margin-top: 10px;
font-family: Arial;
background: radial-gradient(circle, rgba(116,166,106,1) 0%, rgba(59,132,76,1) 100%);
  color: white; /* Dark text for buttons */
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
}

#download a:hover {
background: radial-gradient(circle, rgba(116,166,106,1) 45%, rgba(59,132,76,1) 100%);
}

/* Footer */
footer {
  margin-top: auto;
  margin-bottom: 0;
  padding: 15px 0;
  background: black;


  text-align: center; /* Center footer text */
  border-radius: 8px; /* Rounded corners for footer */
}

footer p {
  color: white; /* Light gray for footer text */
  font-size: 0.9rem;
}



footer a:hover {
  color: #ff007a;
}


