@import url('https://fonts.googleapis.com/css2?family=Nunito&display=swap');


* {
  padding: 0;
  margin: 0;
  color: white;
  font-family: 'Nunito', sans-serif;
}

html {
  scroll-behavior:smooth
}

body {
  counter-reset: vim;
  background-color: #424242;
}

header {
  position: fixed;
  top: 0;
  height: 3.5em;
  width: 100%;
  background-color: #222222;
  z-index: 100;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: flex-end;
  align-items: center;
  border-bottom: 1px solid rgb(48, 255, 48);
}

header h1 {
  font-family: monospace;
  width: 10%;
  margin-left: 5%;
}

header nav {
  width: 100%;
  margin: auto;
  max-width: 65rem;
}

header nav ul {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: nowrap;
  flex-direction: row;
  align-content: center;
}

header nav ul a {
  text-decoration: none;
  margin-right: 5%;
  transition: .3s;
}

header nav ul li {
  transform: scale(1);
  color: white;
  transition: .3s;
}

header nav ul li:hover {
  transform: scale(1.05);
  color: #9aff9a;
}

header nav ul a:last-of-type {
  text-decoration: none;
  margin-right: 5%;
}

main {
  margin: 4rem auto 0 auto;
  max-width: 65rem;
  animation: fadein 1s;
}

.aboutMe {
  width: 94%;
  padding: 0% 3%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-content: center;
  padding-top: 5vh;
}

.aboutMe div{
   width: 100%;
}

.aboutMe ol {
  list-style: none;
  width: 100%;
  font-size: 1.1em;
  padding-top: 5vh;
}

.aboutMe h1 {
  font-size: 5em;
}

.aboutMe p {
  width: 100%;
  font-size: 1.1em;
}

.aboutMe u {
  text-decoration: underline rgb(48, 255, 48);
}

.aboutMe a {
  text-decoration: underline rgb(48, 255, 48);
}

.BackgroundMain {
  background-color: #424242;
  width: 100%;
  height: 94vh;
  z-index: 0;
  position: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  pointer-events: none;
}

.WorkContainer {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: center;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 10;
  width: 94%;
  padding: 0rem 3%;
  padding-top: 6vh;
}

.WorkContainer h2 {
  font-size: 2em;
}

.WorkItem {
  color: black;
  margin: 2rem 0rem;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  transition: .3s;
  transform: scale(1);
}

.WorkItem:hover {
  transform: scale(1.03);
}

.WorkItem h3 {
  margin-top: 1vh;
}

.WorkItem p {
  margin-top: .5vh;
  font-size: 1.1em;
}

main .kunstappie{
  width: 100%;
}

main .kunstappie img{
  width: 100%;
  height: 100%;
}

main .oba {
  width: 39%;
}

main .oba img{
  width: 100%;
  height: 100%;
}

main .vim {
  width: 100%;
}

main .vim img{
  width: 100%;
  height: 100%;
}

main .spotify {
  width: 39%;
}

main .spotify:hover::before{
  content: 'Het kunst appie';
  background: #000000c7;
  position: absolute;
  width: 100%;
  height: 96%;
  color: white;
  opacity: 1;
  padding-left: 4%;
  padding-top: 4%;
  font-size: 1.5em;
}

main .spotify:hover::after{
  content: 'Application i made for my Minor Web Design';
  position: absolute;
  width: 100%;
  height: 83%;
  color: white;
  opacity: 1;
  left: 0;
  top: 18%;
  padding-left: 4%;
}

main .spotify img{
  width: 100%;
  height: 100%;
}

main .windows {
  width: 100%;
}

main .windows img{
  width: 100%;
  height: 100%;
}

main .fireworks {
  width: 39%;
}

main .fireworks:hover::before{
  content: 'Het kunst appie';
  background: #000000c7;
  position: absolute;
  width: 100%;
  height: 96%;
  color: white;
  opacity: 1;
  padding-left: 4%;
  padding-top: 4%;
  font-size: 1.5em;
}

main .fireworks:hover::after{
  content: 'Application i made for my Minor Web Design';
  position: absolute;
  width: 100%;
  height: 83%;
  color: white;
  opacity: 1;
  left: 0;
  top: 18%;
  padding-left: 4%;
}

main .fireworks img{
  width: 100%;
  height: 100%;
}

.contact {
  height: 35vh;
  width: 94%;
  padding: 0% 3%;
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: center;
  align-items: flex-start;
  font-size: 1.1em;
}

.contact ul {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-content: center;
  padding-top: 4vh;
}

.contact li {
  list-style: none;
  width: 12%;
}

.contact img {
  width: 100%;
  transform: scale(1);
  transition: .3s;
}

.contact img:hover {
  transform: scale(1.05);
  transition: .3s;
}

.contact h2 {
  font-size: 3em;
  margin-bottom: .5vh;
}

.contact p {
  width: 50%;
  font-size: 1.1em;
}

.contact u {
  text-decoration: underline rgb(48, 255, 48);
}

.detailWork img {
  width: 100%;
  height: auto;
}

@keyframes fadein {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

footer {
  height: 3.5em;
  width: 100%;
  background-color: #222222;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: flex-start;
  align-items: center;
  border-top: 1px solid rgb(48, 255, 48);
}

footer p {
  max-width: 65rem;
  margin: auto;
}

.detailfooter {
  position: absolute;
  bottom: 0;
}

.detailContainer {
  width: 94%;
  padding: 0% 3%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  align-content: center;
  padding-top: 5vh;
}

.detailContainer h1 {
  font-size: 3em;
  padding: 2rem 0;
}

.detailContainer p {
  font-size: 1.1em;
  padding: 1rem 0;
}

.WorkContainer p a {
  text-decoration: underline rgb(48, 255, 48);
}