body {
  background-image: url('starsglow.gif');
  font-family: 'Courier New', Courier, monospace !important;
  color: #ffffff !important;
  text-align: center !important;
  margin: 0;
  padding: 0;
  height: 100vh;
}

h1 {
  font-size: 48px;
  color: #00ffcc;
  text-shadow: 2px 2px #ff00ff;
  margin-top: 50px;
}

a {
  color: #ff00ff;
}

#container {
  width: 85%;
  margin: 0 auto;
  padding: 20px;
  border: 3px solid #ff00ff;
  background-color: rgba(0, 0, 0, 0.85);
  box-shadow: 0 0 15px #00ffcc;
  text-align: center;
}

#sidebar {
  float: left;
  width: 30%;
  background-color: #1a1a1a;
  border-right: 2px solid #00ccff;
  padding: 15px;
  box-shadow: 5px 5px 5px #000000;
}

#content {
  text-align: left;
  width: 100%;
  padding: 20px;
}

.imgbrdr {
  width: 100%;
  border: 4px solid #00ffcc;
  box-shadow: 0 0 10px #ff00ff;
  margin-bottom: 20px;
}

.glow-button {
  background-color: #00ffcc;
  color: #000;
  padding: 15px 25px;
  text-transform: uppercase;
  font-weight: bold;
  text-decoration: none;
  border: 3px solid #ff00ff;
  box-shadow: 0 0 15px #00ffcc;
  transition: background-color 0.3s, color 0.3s, box-shadow 0.3s;
}

.glow-button:hover {
  background-color: #ff00ff;
  color: #fff;
  box-shadow: 0 0 30px #ff00ff;
}

.glitch {
  font-size: 32px;
  color: #00ffcc;
  text-shadow: 0px 0px 5px #ff00ff, 5px 0px 10px #000;
  animation: glitch 2s infinite;
}

@keyframes glitch {
  0% {
    text-shadow: 5px 0px 5px #ff00ff;
    transform: translate(1px, -1px);
  }
  50% {
    text-shadow: -5px 0px 5px #ff00ff;
    transform: translate(-1px, 1px);
  }
  100% {
    text-shadow: 5px 0px 5px #ff00ff;
    transform: translate(1px, -1px);
  }
}
.project-card {
  border: 3px solid #ff00ff;
  background-color: rgba(0, 0, 0, 0.85);
  box-shadow: 0 0 15px #00ffcc;
  padding: 20px;
  margin: 20px auto;
  width: 80%;
  max-width: 500px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px #ff00ff;
}

.project-title {
  font-size: 24px;
  color: #00ffcc;
  margin-bottom: 10px;
}

.project-description {
  font-size: 16px;
  color: #ffffff;
}
