* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Space Grotesk', sans-serif;
  color: #10d697; 
}

html {
    scroll-snap-type: y mandatory;
}

body {
  min-height: 100vh;
}

.background {
  position: fixed;
  z-index: -2;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(45deg, #11222f, #241f37);
}

.container {
  position: relative;
  width: 100%;
  height: 100vh;
  scroll-behavior: smooth;
}

.bubbles {
  position: fixed;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 27px;
  z-index: -1;
}

.bubbles span {
  position: relative;
  width: 3px;
  height: 3px;
  background: #10d697;
  margin: 0 4px;
  border-radius: 50%;
  box-shadow: 0 0 0 10px #0ab64e44, #14bf58, #11a01d;
  animation: animate 15s linear infinite;
  animation-duration: calc(600s / var(--i));
  animation-timing-function: linear;
}

@keyframes animate {
  0% {
    transform: translateY(160vh);
  }
  100% {
    transform: translateY(-100vh);
  }
}

.highlight {
  color: #17e0a0;
}

.lowlight {
  color: white;
}

section {
  height: 100vh;
  scroll-snap-align: start;
}

 /* Home */

section.home {
  display: flex;
  justify-content: center;
  align-items: center;
}

section.home h1 {
  font-size: 3.5rem;
}

/* About me */

section.about-me {
    display: flex;
    justify-content: center;
    align-items: center;
}

section.about-me h1 {
    font-size: 2.5rem;
    margin-bottom: 35%;
    margin-right: 50%;
    position: absolute;
}

section.about-me a {
  font-size: 1.2rem;
  position: absolute;
  padding: auto;
  color: white;
  margin-bottom: -7.5%;
  margin-right: 26%;
  cursor: pointer;
  transition: background-color 0.1s, color 0.1s;
}

section.about-me a:hover {
  font-size: 1.2rem;
  position: absolute;
  padding: auto;
  background-color: white;
}

section.about-me h2 {
  font-size: 1rem;
  position: absolute;
  color: white;
  background-color: #10d697;
  border-radius: 5px;
  height: 40px;
  width: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
}

section.about-me h2:hover {
  font-size: 1rem;
  position: absolute;
  color: white;
  background-color: #10d697;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
  color: #10d697;
}

section.about-me p{
    font-size: 1.2rem;
    position: absolute;
    padding: auto;
    margin-left: 10%;
    margin-top: 2%;
    height: 200px;
    width: 700px;
    color: white;
}

.portrait {
  justify-content: center;
  align-items: center;
  position: absolute;
  object-fit: cover;
  height: 200px;
  width: 200px;
  margin-right: 40%;
  margin-top: 2%;
  border-radius: 5px;
}

/* Projects */

section.projects {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

section.projects h1 {
  font-size: 2.5rem;
  margin-bottom: 35%;
  margin-left: 50%;
}

.projects-list {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  gap: 70px;
}

.project-1 {
  height: 30vh;
  width: 15vw;
  border-radius: 10px;
  background-image: url(/img/Marjolein\ banner.png);
  background-size: cover;
  background-position: center;
  transition: transform 0.5s;
}


.project-2 {
  height: 30vh;
  width: 15vw;
  border-radius: 10px;
  background-image: url(/img/Neuro\ banner.png);
  background-size: cover;
  background-position: center;
  transition: transform 0.5s;
}


.project-3 {
  height: 30vh;
  width: 15vw;
  border-radius: 10px;
  background-image: url(/img/Portfolio\ Banner.png);
  background-size: cover;
  background-position: center;
  transition: transform 0.5s;
}

.project-1:hover,
.project-2:hover,
.project-3:hover {
  transition: transform 0.5s;
  transform: scale(1.4);
}

/* Project 1,2,3 */

.project-name {
  display: flex;
  position: absolute;
  height: 80px;
  width: 80px;
}

.project-name h1 {
  font-size: 2.5rem;
  margin-top: 12.5vh;
  margin-left: 20vw;
  white-space: nowrap;
}

.project-container {
  position: fixed;
}

.back {
  position: relative;
  display: flex;
}

.back svg{
  width: 30px;
  height: 30px;
  margin-top: 13.7vh;
  margin-left: 16vw;
  transition: transform 0.3s ease;
}

.back svg:hover {
  transform: translateX(-10px);
}

.description {
  position: relative;
  display: flex;
  margin-top: 1vh;
  margin-left: 5vh;
}

.description p {
  height: 300px;
  width: 660px;
  color: white;
  font-size: 1.2rem;
}

.my-role {
  position: absolute;
  display: flex;
  margin-top: 29vh;
  margin-right: 20vw;
}


.my-role p {
  width: 600px;
  color: white;
  font-size: 1.2rem;
}

.teammates {
  position: absolute;
  display: flex;
  margin-top: 45vh;
  margin-right: 20vw;
}
  
  
.teammates p {
  height: 100px;
  width: 600px;
  color: white;
  font-size: 1.2rem;
}

.image1 {
  position: relative;
  display: flex;
  height: 240px;
  width: 127px;
  margin-top: 10vh;
  margin-left: 38vh;
}

.image1 img {
  border-radius: 5px;
}

.image2 {
  position: absolute;
  display: flex;
  height: 240px;
  width: 127px;
  margin-top: 29vh;
  margin-left: 66vh;
}

/* Contact */

section.contact {
    display: flex;
    justify-content: center;
    align-items: center;
}

section.contact h1 {
    font-size: 2.5rem;
    margin-bottom: 35%;
    margin-right: 50%;
}

.contact-info {
  justify-content: center;
  align-items: center;
  margin-top: -5%;
  left: 27%;
  position: absolute;
}

.contact-info p {
  font-size: 1.2rem;
  position: absolute;
  margin-top: 2%;
  height: 200px;
  width: 900px;
  color: white;
}

.contact-adress {
  display: flex;
  gap: 150px;
  font-size: 1.2rem;
  margin-top: 25%;
  margin-left: 53%;
}

.contact-adress svg {
  display: flex;
  height: 40px;
  width: 40px;
  position: relative;
}

.contact-adress svg:hover {
  position: relative;
  display: flex;
  height: 40px;
  width: 40px;
  transform: translateY(-5px);
  transition: transform 0.5s;
}

.clipboard-message {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #10d697;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 14px;
  z-index: 9999;
  animation: slide-up 0.3s ease-in-out;
}

@keyframes slide-up {
  0% {
    opacity: 0;
    transform: translate(-50%, 100%);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}



::-webkit-scrollbar {
  display: none;
}

.home {
  z-index: 1;
}



 /* Responsiveness */

