


/********************LOGO STYLES  ABOUT ******************************************/
  
  .left-logo {
    color: rgb(241, 3, 241);
  }
  
  .right-logo {
    border: 1px solid rgb(241, 3, 241);
    border-left:none;
  }


.art-img-vuur {
border:1px solid rgb(241, 3, 241);
}

.marg-img {
  margin-top: 60px;
}

.month{
  font-size: 16px;
  color: rgb(241, 3, 241);
  }

  a.month:hover {
    color: lightgrey;
  }
  a.normal-link {
    color:coral
  }
  
  .normal-link:hover {
    color:coral;
    text-decoration: underline;
  }


.quote {
  color: lightgreen;
}

/************* end of animated letters *****************/


/************* CUSTOM BUTTONS *************************/

.custom-btn {
    background-color: rgb(241, 3, 241);
  }



.main-content {
    background: linear-gradient(142deg, rgba(2,0,36,1) 90%, rgb(241, 3, 241) 99%);
    }


  a.continue {
    color: rgb(241, 3, 241);
    /*text-shadow: 1px 2px 2px rgb(2,0,36,1);*/
  }

  a.continue:hover {
    color: lightgrey;
  }

  /************************TOP WIDGETS*************************************/

.top-widget {  
        background: linear-gradient(142deg, rgba(2,0,36,1) 34%, rgb(241, 3, 241) 91%);
        }


.sub-top-widget {
       color: rgb(241, 3, 241);
        }
            

.sub-main {
color: white;
}


div.p-4 {
    background: linear-gradient(142deg, rgba(2,0,36,1) 54%, rgb(241, 3, 241) 91%);
}


.about-elsewhere {
    color: rgb(241, 3, 241);
}

a.elsewhere {
  font-size: 18px;
  color: rgb(241, 3, 241);
  box-shadow: 5px 5px 5px rgb(0 0 0 / 30%); 
}



.footer {
background-color: rgb(28, 31, 34);
padding: 20px;
text-align: center;
}

/**************** QUOTES *********************/
.quote {
background: linear-gradient(142deg, rgba(2,0,36,1) 50%, rgb(241, 3, 241) 99%);
}

.quote-list {
    color: rgb(241, 3, 241);
}

a.quote-list {
    color: rgb(241, 3, 241);
}

.quote-text {
    font-size: 20px;
    font-weight: 400;
    font-style: italic;
}

.phil-quote {
    display: block;
    padding: 10px 0px;
    color: lightgrey;
    font-size: 16px;
    letter-spacing: 1px;
    text-align: center;
    background: linear-gradient(142deg, rgba(2,0,36,1) 54%, rgb(241, 3, 241) 91%);
    text-shadow: 2px 2px 2px rgb(2,0,36,1);
    border-radius: 10px;
    box-shadow: 5px 5px 5px rgb(0 0 0 / 30%);
}

a.author {
    color: rgb(241, 3, 241);
}

a.author:hover {
  color: lightgrey;
}

/**************** WIDGETS *********************/


.widget {
background: linear-gradient(142deg, rgba(2,0,36,1) 54%, rgb(241, 3, 241) 91%);
}


/****************** ANIMATED BUTTONS RIGHT *********************/

.box{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 400px;
  margin: auto;
  padding-top: 20px;
  overflow: hidden;
  height: 100%
}

.box button{
  height: 90px;
  width: 280px;
  line-height: 90px;
  background: transparent;
  border: 3px solid #fff;
  margin: 10px;
  font-size: 16px;
  color: #fff;
  text-transform: uppercase;
  cursor: pointer;
  float: left;
  display: block;
  position: relative;
  overflow: hidden
}

.box button span{
  width: 100%;
  display: block;
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  transition: all 0.1s ease 0.3s
}

button:hover span{color: #fff}

/*
===========================================
    the first button 
===========================================
*/

.button1:first-child{
  color: #27f;
  border-color: #27f
}

.button1:first-child:before{
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 300px;
  width: 30px;
  height: 30px;
  background: #27f;
  border-radius: 50%;
  transform: translateY(-50%);
}

.button1:first-child:hover:before{
  animation: hover-one 1s ease forwards
}

@keyframes hover-one{
  0%{
    top: 50%;
    left: 300px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    transform: translateY(-50%);
    opacity: 0
  }
  25%{
    top: 50%;
    left: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    transform: translateY(-50%);
    opacity: 0.7
  }
  50%{
    top: 0;
    left: 0;
    width: 25%;
    height: 100%;
    border-radius: 0;
    transform: translateY(0);
    opacity: 1
  }
  100%{
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 0;
    transform: translateY(0);
  }
}


/*
===========================================
    the second button 
===========================================
*/

.button2:nth-child(2){
  color: #EA4335;
  border-color: #EA4335
}

.button2:nth-child(2):before{
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 300px;
  width: 30px;
  height: 30px;
  background: #EA4335;
  border-radius: 50%;
  transform: translateY(-50%);
}

.button2:nth-child(2):after{
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 300px;
  width: 30px;
  height: 30px;
  background: #EA4335;
  border-radius: 50%;
  transform: translateY(-50%);
}

.button2:nth-child(2):hover:before{
  animation: hover-two-before 1s ease forwards
}

.button2:nth-child(2):hover:after{
  animation: hover-two-after 1s ease forwards
}

@keyframes hover-two-before{
  0%{
    top: 50%;
    left: 300px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    transform: translateY(-50%);
    opacity: 0
  }
  25%{
    top: 50%;
    left: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    transform: translateY(-50%);
    opacity: 0.7
  }
  50%{
    top: 0;
    left: 0;
    width: 25%;
    height: 100%;
    border-radius: 0;
    transform: translateY(0);
    opacity: 1
  }
  100%{
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    border-radius: 0;
    transform: translateY(0);
  }
}

@keyframes hover-two-after{
  0%{
    top: 50%;
    right: 300px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    transform: translateY(-50%);
    opacity: 0
  }
  25%{
    top: 50%;
    right: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    transform: translateY(-50%);
    opacity: 0.7
  }
  50%{
    top: 0;
    right: 0;
    width: 25%;
    height: 100%;
    border-radius: 0;
    transform: translateY(0);
    opacity: 1
  }
  100%{
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    border-radius: 0;
    transform: translateY(0);
  }
}

/*
===========================================
    the third button 
===========================================
*/

.button3:nth-child(3){
  color: #FBBC05;
  border-color: #FBBC05
}

.button3:nth-child(3):before{
  content: "";
  display: block;
  position: absolute;
  top: -90px;
  left: 0;
  width: 100%;
  height: 100%;
  background: #FBBC05;
  transition: all 0.4s ease;
  opacity: 0.6
}

.button3:nth-child(3) span:before{
  content: "";
  display: block;
  position: absolute;
  top: -90px;
  left: 0;
  width: 100%;
  height: 100%;
  background: #FBBC05;
  transition: all 0.4s ease;
  opacity: 0.4
}

.button3:nth-child(3):after{
  content: "";
  display: block;
  position: absolute;
  top: -90px;
  left: 0;
  width: 100%;
  height: 100%;
  background: #FBBC05;
  transition: all 0.4s ease;
}

.button3:nth-child(3) span:after{
  content: "";
  display: block;
  position: absolute;
  top: -90px;
  left: 0;
  width: 100%;
  height: 100%;
  background: #FBBC05;
  transition: all 0.4s ease;
  opacity: 0.2
}

.button3:nth-child(3):hover:before{
  top: 0;
  transition-delay: 0.2s
}

.button3:nth-child(3):hover span:before{
  top: 0;
  transition-delay: 0.1s
}

.button3:nth-child(3):hover:after{
  top: 0;
  transition-delay: 0.3s
}

.button3:nth-child(3):hover span:after{
  top: 0;
}


/*
===========================================
    the fourth button 
===========================================
*/

.button4:nth-child(4){
  color: #34A853;
  border-color: #34A853
}

.button4:nth-child(4):before{
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 300px;
  width: 100%;
  height: 25%;
  background: #34A853;
  transition: all 0.4s ease;
}

.button4:nth-child(4) span:before{
  content: "";
  display: block;
  position: absolute;
  top: 21px;
  left: 300px;
  width: 100%;
  height: 25%;
  background: #34A853;
  transition: all 0.4s ease;
  z-index: -1
}

.button4:nth-child(4):after{
  content: "";
  display: block;
  position: absolute;
  top: 42px;
  left: 300px;
  width: 100%;
  height: 25%;
  background: #34A853;
  transition: all 0.4s ease;
}

.button4:nth-child(4) span:after{
  content: "";
  display: block;
  position: absolute;
  bottom: 5px;
  left: 300px;
  width: 100%;
  height: 25%;
  background: #34A853;
  transition: all 0.4s ease;
  
}

.button4:nth-child(4):hover:before{
  left: 0;
}

.button4:nth-child(4):hover span:before{
  left: 0;
  transition-delay: 0.1s
}

.button4:nth-child(4):hover:after{
  left: 0;
  transition-delay: 0.2s
}

.button4:nth-child(4):hover span:after{
  left: 0;
  transition-delay: 0.3s
}


/*
===========================================
    the fifth button 
===========================================
*/

.button5:nth-child(5){
  color: #6A5F2F;
  border-color: #6A5F2F
}

.button5:nth-child(5):before{
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 300px;
  width: 100%;
  height: 25%;
  background: #6A5F2F;
  transition: all 0.4s ease;
}

.button5:nth-child(5) span:before{
  content: "";
  display: block;
  position: absolute;
  top: 21px;
  right: 300px;
  width: 100%;
  height: 25%;
  background: #6A5F2F;
  transition: all 0.4s ease;
  z-index: -1
}

.button5:nth-child(5):after{
  content: "";
  display: block;
  position: absolute;
  top: 42px;
  left: 300px;
  width: 100%;
  height: 25%;
  background: #6A5F2F;
  transition: all 0.4s ease;
}

.button5:nth-child(5) span:after{
  content: "";
  display: block;
  position: absolute;
  bottom: 5px;
  right: 300px;
  width: 100%;
  height: 25%;
  background: #6A5F2F;
  transition: all 0.4s ease;
  
}

.button5:nth-child(5):hover:before{
  left: 0;
}

.button5:nth-child(5):hover span:before{
  right: 0;
}

.button5:nth-child(5):hover:after{
  left: 0;
}

.button5:nth-child(5):hover span:after{
  right: 0;
}


/*
===========================================
    the sixth button 
===========================================
*/

.button6:nth-child(6){
  color: #D53669;
  border-color: #D53669;
}

.button6:nth-child(6):before{
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 25%;
  height: 100%;
  background: #D53669;
  transform: rotateY(90deg);
  transition: all 0.6s ease;
}

.button6:nth-child(6) span:before{
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 69px;
  width: 25%;
  height: 97%;
  background: #D53669;
  transform: rotateY(90deg);
  transition: all 0.6s ease;
  z-index: -1
}


.button6:nth-child(6):after{
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 138px;
  width: 25%;
  height: 100%;
  background: #D53669;
  transform: rotateY(90deg);
  transition: all .6s ease;
}

.button6:nth-child(6) span:after{
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 207px;
  width: 25%;
  height: 97%;
  background: #D53669;
  transform: rotateY(90deg);
  transition: all 0.6s ease;
  z-index: -1
}



.button6:nth-child(6):hover:before{
  transform: rotateY(0)
}

.button6:nth-child(6):hover span:before{
  transform: rotateY(0);
  transition-delay: 0.2s;
}

.button6:nth-child(6):hover:after{
  transform: rotateY(0);
  transition-delay: 0.4s;
}

.button6:nth-child(6):hover span:after{
  transform: rotateY(0);
  transition-delay: 0.6s;
}


/*
===========================================
    the seventh button 
===========================================
*/

.button7:nth-child(7){
  color: #9B59B6;
  border-color: #9B59B6;
}

.button7:nth-child(7):before{
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: -200px;
  width: 50%;
  height: 100%;
  background: #9B59B6;
  transition: all 0.6s ease;
}

.button7:nth-child(7) span:before{
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: -63px;
  border-width: 42px 42px 42px 0;
  border-color: #9B59B6 transparent;
  border-style: solid;
  transition: all 0.6s ease;
  z-index: -1
}

.button7:nth-child(7):after{
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: -200px;
  width: 50%;
  height: 100%;
  background: #9B59B6;
  transition: all 0.6s ease;
}

.button7:nth-child(7) span:after{
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: -63px;
  border-width: 42px 0 42px 42px;
  border-color: #9B59B6 transparent;
  border-style: solid;
  transition: all 0.6s ease;
  z-index: -1
}



.button7:nth-child(7):hover:before{
  left: 0;
}

.button7:nth-child(7):hover:after{
  right: 0;
}

.button7:nth-child(7):hover span:before{
  left: 137px;
}

.button7:nth-child(7):hover span:after{
  right: 137px;
}


/*
===========================================
    the eighth button 
===========================================
*/

.button8:nth-child(8){
  color: #3498DB;
  border-color: #3498DB;
}

.button8:nth-child(8):before{
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: -200px;
  width: 50%;
  height: 100%;
  background: #3498DB;
  transition: all 0.6s ease;
}

.button8:nth-child(8) span:before{
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: -63px;
  border-width: 42px 0 42px 42px;
  border-color: transparent #3498DB;
  border-style: solid;
  transition: all 0.6s ease;
  z-index: -1
}

.button8:nth-child(8):after{
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: -200px;
  width: 50%;
  height: 100%;
  background: #3498DB;
  transition: all 0.6s ease;
}

.button8:nth-child(8) span:after{
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: -63px;
  border-width: 42px 42px 42px 0;
  border-color: transparent #3498DB;
  border-style: solid;
  transition: all 0.6s ease;
  z-index: -1
}



.button8:nth-child(8):hover:before{
  left: 0;
}

.button8:nth-child(8):hover:after{
  right: 0;
}

.button8:nth-child(8):hover span:before{
  left: 137px;
}

.button8:nth-child(8):hover span:after{
  right: 137px;
}


img#mo7amed{
  border-radius: 50%;
  position: fixed;
  bottom: 10px;
  right: 10px;
  cursor: pointer;
  transition: all 0.4s linear;
}

img#mo7amed:hover{
  transform: scale(1.1,1.1);
  box-shadow: 5px 5px 15px #000
}

@media (max-width: 620px){
  
  .box{width: 100%}
  
  .box button{
    float: none;
    margin: 20px auto;
  }
}

/***************** THREEJS ANIMATION GLOBE *********************/
#container {
  width: 370px;
  height: 370px;
  position: relative;
}




/**************** FOOTER *********************/
.footer {
background-color: rgb(28, 31, 34);
padding: 20px;
text-align: center;
}


/**************** SKULL ****************************/
#particles-js {
  margin-top:20px;
  background-color: transparent;
  width: 80%;
  height: 80%;
  cursor:pointer;
  z-index: -1;
}


.archives {
    color: white;
}

.archives:hover {
  color: lightgrey;
}

.about-cat {
  color:orange;
}

.kop {
  color: rgb(241, 3, 241);
  font-size: 20px;
  letter-spacing: 1px;
  font-weight: 500;
}

/* moving letters Aanpassingen in de CSS-stijlen */
@media (max-width: 767px) {
  .ml3 {
    font-weight: 500;
    font-size: 22px;
  }
  
}




