body {
  margin: 0;
  font-family: 'Krona One', sans-serif;
  font-size: 25;
  background-color: #000;
  color: #fff;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
}

.nav-buttons {
  display: flex;
  gap: 20px;
  margin-left: 20px;    
}

.nav-link {
  color: white;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 12px;
  transition: background-color 0.3s;
}

.nav-link:hover {
  background-color: white;
    color:black;
}

.nav-link.active {
  border: 2px solid white;
}

.logo img {
  width: 160px;
  height: auto;
}

.portfolio-section {
  padding: 100px 40px;
  background-color: #000;
    margin-top: 50px;
    
}

.portfolio-grid {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

..portfolio-item {
  flex: 1 1 calc(25% - 30px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.portfolio-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 15px;
}

.project-description {
  font-size: 14px;
  color: #ccc;
  max-width: 100%;
  text-align: left;
  width: 100%;
  padding-left: 0;
}

.links {
  display: flex; /* Display icons side by side */
  gap: 10px; /* Space between the icons */
  margin-top: 10px; /* Adds space between the last line of text and icons */
}

.project-link-icon {
  width: 12px; /* Smaller size for the icons */
  height: 12px;
  object-fit: cover;
}

.project-link-icon {
  width: 12px; /* Smaller size for the icons */
  height: 12px;
  object-fit: cover;
}


.links-section {
  background-color: #000; /* Optional: for contrast */
  display: flex;
  justify-content: flex-end; /* Align content to the right */
  position: fixed; /* Fix to screen */
  bottom: 30px; /* Move it up from the bottom (increase this number to move it higher) */
  right: 30px;  /* Move it in from the right (increase to move it further left) */
  padding: 10px;
  border-radius: 10px; /* Optional: rounded corners */
  z-index: 1000;
}

.links-images {
  display: flex;
  align-items: center;
  gap: 10px;
}

.links-images img {
  width: 1s0px;
  height: 10px;
  object-fit: cover;
  border-radius: 8px;
}
