* {
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  margin: 0;
  padding: 0;
  background: #f0f8ff;
  color: #002a5e;
  overflow-x: hidden;
  position: relative;
}

header {
  background: #dceeff;
  color: #004080;
  padding: 20px 60px;
  text-align: center;
  font-weight: 700;
  animation: fadeIn 1.5s ease-in-out;
  position: relative;
  z-index: 2;
}
header h1 {
  margin: 0;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  animation: fadeIn 1.5s ease-in-out;
  position: relative;
  z-index: 2;
}

.about {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}
.about img {
  border-radius: 50%;
  width: 150px;
  height: 150px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 20px;
}
.about h2 {
  font-weight: 700;
  margin-bottom: 20px;
}

.projects {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  animation: fadeIn 1.5s ease-in-out;
  position: relative;
  z-index: 2;
}
.projects .project {
  position: relative;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 64, 128, 0.2);
  padding: 20px;
  transition: transform 0.3s;
}
.projects .project img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 20px;
  display: block;
  border: 1px solid;
}
.projects .project h3 {
  margin-top: 0;
}

.contact {
  text-align: center;
  margin-top: 60px;
  animation: fadeIn 1.5s ease-in-out;
  position: relative;
  z-index: 2;
}

.social-links {
  margin-top: 20px;
}
.social-links a {
  color: #004080;
  font-size: 1.5em;
  margin: 0 15px;
  transition: color 0.3s ease;
}
.social-links a:hover {
  color: #0073b1;
}

.footer {
  text-align: center;
  padding: 20px;
  background: #004080;
  color: #ffffff;
  margin-top: 40px;
  animation: fadeIn 1.5s ease-in-out;
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .projects {
    grid-template-columns: 1fr;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes slideInLeft {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slideInUp {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes zoomIn {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: radial-gradient(circle at 50% 50%, rgba(0, 150, 255, 0.3), rgba(0, 0, 50, 0.9));
  overflow: hidden;
}

canvas {
  display: block;
  width: 100%;
  height: 100%;
}

.popup {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
}
.popup-content {
  position: relative;
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  max-width: 80%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.popup-content video {
  width: 100%;
  height: 100%;
}
.popup .close {
  position: absolute;
  top: 10px;
  right: 10px;
  color: #aaa;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
}
.popup .close:hover {
  color: #000;
}

.stack {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.stack span {
  display: inline-block;
  background-color: #0073b1;
  color: #fff;
  padding: 5px 10px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 500;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}/*# sourceMappingURL=style.css.map */