p {
  color: white;
  font-size: 20px;
  display: flex;
  justify-content: start;
}

body {
  overflow: hidden;
  background-color: black;
  margin: 0px;
  padding: 0px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  overflow-x: hidden;
  width: auto;
}

.skills {
  color: white;
  font-size: 20px;
  margin-left: 80vh;
  margin-top: 5vh;
}

.navbar {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  background-color: #000000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.navbar ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
}

.navbar ul li a {
  display: block;
  color: white;
  text-align: center;
  padding: 20px 150px;
  text-decoration: none;
  transition: background 0.3s;
}

.navbar ul li a:hover {
  text-decoration-line: underline;
  text-decoration-color: rgb(244, 252, 0);
}

.text h1 {
  color: white;
  font-size: 35px;
  display: flex;
  justify-content: start;
  margin-left: 80vh;
  margin-top: 5vh;
}

.text h2 {
  color: white;
  font-size: 15px;
  display: flex;
  justify-content: start;
  margin-left: 70vh;
  margin-top: 10vh;
}

.skill img {
  transition: ease 0.4s;
}

.skill .projects {
  display: flex;
  flex-direction: column;
  margin-left: 12vw;
  border-bottom: 10px solid rgb(251, 255, 0);
  padding-bottom: 50px;
  width: 45vw;
}

.skill img:hover {
  transform: scale(1.5)
}

.foto {
  display: flex;
  gap: 5%;
  align-items: center;
  justify-content: center;
  margin-top: -5%;
}

.foto img {
  width: 200px;
  display: flex;
}

.lijn1 {
  border-bottom: 2px solid rgb(251, 255, 0);
  width: 150px;
  height: 150px;
  position: relative;
  margin-bottom: 20px;
  /* border-left: 15px solid rgb(251, 255, 0);
  border-top: 15px solid rgb(251, 255, 0); */
  border-bottom: 15px solid transparent;
  border-right: 15px solid transparent;
  z-index: 0;
}

.lijn1::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 200%;
  height: 15px;
  background: linear-gradient(to right, #ffff00 0%, #ff9900 100%);
  z-index: 1;
  pointer-events: none;
  clip-path: polygon(0 0, 100% 0, calc(100% - 15px) 100%, 0 100%);
}

.lijn1::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 15px;
  height: 200%;
  background: linear-gradient(to bottom, #ffff00 0%, #ff9900 100%);
  z-index: 1;
  pointer-events: none;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 15px), 0 100%);
}

.lijn2 {
  border-bottom: 2px solid rgb(251, 255, 0);
  width: 150px;
  height: 150px;
  position: fixed;
  right: 0;
  bottom: 0;
  margin-bottom: 20px;
  border-bottom: 15px solid transparent;
  border-right: 15px solid transparent;
  z-index: 100;
  right: 30px;
  rotate: 180deg;
}

.lijn2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 200%;
  height: 15px;
  background: linear-gradient(to right, #ffff00 0%, #ff9900 100%);
  z-index: 1;
  pointer-events: none;
  clip-path: polygon(0 0, 100% 0, calc(100% - 15px) 100%, 0 100%);
}

.lijn2::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 15px;
  height: 200%;
  background: linear-gradient(to bottom, #ffff00 0%, #ff9900 100%);
  z-index: 1;
  pointer-events: none;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 15px), 0 100%);
}

.project-button {
  display: inline-block;
  padding: 20px;
  border: 2px solid rgb(251, 255, 0);
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  background: transparent;
  cursor: pointer;
}

.project-button img {
  width: 150px;
  height: auto;
  display: block;
}

.project-button:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 16px rgba(255, 247, 0, 0.3);
}

.projecten {
  display: flex;
  gap: 40px;
  justify-content: center;
  margin-top: 50px;
  margin-bottom: 50px;
}

.goede-doel {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.goede-doel p {
  color: rgb(245, 237, 0);
  margin-top: 7%;
  font-size: 20px;
  font-weight: bold;
  transition: 0.3s ease;
}

.goede-doel p:hover {
  transform: scale(1.3);
  text-shadow: 0 0 20px #9400d3, 0 0 40px #9400d3;
}

.foto h1{
  color: #ffffff;
}

.projecten h1{
  color: white;
}


