
html, body {
    padding: 0;
    margin: 0;
    height: 100%;
    background-image: linear-gradient(rgb(52, 51, 56), rgb(41, 40, 46));
    font-family: Arial, Helvetica, sans-serif;
}

.flip-card {
    position: relative;
    top: 25px;
    margin-left: 40%;
    background-color: transparent;
    width: 300px;
    height: 300px;
    perspective: 1000px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.flip-card-front {
    background-color: rgb(255, 255, 255);
    color: black;
}

.flip-card-back {
    background-image: linear-gradient(rgb(58, 68, 77), rgb(59, 76, 97));
    color: rgb(255, 255, 255);
    transform: rotateY(180deg);
}



#projecten {
    justify-content: center;
    color: white;
}

.row {
    display: table;
    position: relative;
    justify-content: center;
    margin-left: auto !important;;
    margin-right: auto !important;;
    width: 85%;
}

.column {
    width: 30.33%;
    float: left;
    display: flex;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
    padding: 1%;
  }
  
 #navbar a{
      color: grey !important;;
  }

  
  #Welkom {
      height: 100vh;
  }

#Projecten {
    margin-bottom: 45px;
    color: white;
    text-align: center;
}

#OverMij {
    color: white;
    text-align: center;
}