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;
}

.hero-text {
  text-align: center;
  margin-top: 100px;
  color: white;
}

.hero-text h1 {
  font-size: 48px;
  margin-bottom: 10px;
}

.hero-text h2 {
  font-size: 24px;
  margin-bottom: 8px;
}

.hero-text p {
  font-size: 16px;
}


.portfolio-section {
  padding: 100px 20px;
  background-color: #000; /* Optional: for contrast */
  display: flex;
  justify-content: center;
}

.portfolio-images {
  display: flex;
  align-items: center;
  gap: 25px;
}

.portfolio-images img {
  width: 250px;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;ß
}

.arrow {
  color: white;
  font-size: 64px;
  margin-left: 20px;
  cursor: default;
}

.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: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 8px;
}


.about-section {
  padding: 100px 60px;
}

.about-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.about-text {
  flex: 1;
  max-width: 50%;
}

.about-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
    margin-right
}

.about-image img {
  max-width: 100%;
  max-height: 500px;
  object-fit: cover;
  border-radius: 12px;
}
