/* General reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #1e1e2f;
  color: #c9c9d6;
  line-height: 1.6;
}

.navbar {

  position: sticky;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #29293d;
  padding: 15px 20px;
  width: 100%;
  top: 0;
  z-index: 1000;
  animation: slideDown 1s ease-out forwards;
}
    @keyframes slideDown {
        from {
        transform: translateY(-100%);
        }
        to {
        transform: translateY(0);
        }
    }

.navbar .logo {
  font-size: 1.2rem;
  color: #fff;
}

.nav-links a {
  text-decoration: none;
  color: #9f9fbd;
  margin: 0 10px;
  font-size: 1rem;
}

.nav-links a:hover {
  color: #5cc8ff;
}

.fixed-box {
  color: #32cd99;
}

.main {
  margin-top: 10px;
  padding: 20px;
}

.current-project {
  background-color: #2e2e4a;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 30px;
}

.current-project .links .button {
  display: inline-block;
  background-color: #5cc8ff;
  color: #1e1e2f;
  padding: 10px 15px;
  margin-right: 10px;
  text-decoration: none;
  border-radius: 5px;
  font-size: 0.9rem;
}

.current-project .button:hover {
  background-color: #32cd99;
}

.past-projects {
  background-color: #2e2e4a;
  padding: 20px;
  border-radius: 10px;
}

.projects {
  display: flex;
}

.BuyLink {
    display: none;
    position:absolute;
    top: 100%;
    left: 50%;
    color: #3498db;
}

.images img {
  width: 200px;
  height: auto;
  border-radius: 5px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.images img:hover {
  transform: scale(1.1); /* Slight zoom effect on hover */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4); /* Adds a shadow effect */
}

.image {
    width: 200px;
    height: 200px;
    margin-bottom: 15px;
}


.description {
  background-color: #41416b;
  color: #fff;
  padding: 15px;
  border-radius: 5px;
  flex: 1;
}
