body{

    color:white;

    background-image: url(IMG_0929.JPG); /*I took this picture myself */

    background-repeat: no-repeat;

    background-attachment: fixed;

    background-size: cover;


}
.Headings{
color:white;
    display: flex;

    flex-direction: space-around;

    flex-wrap:wrap;

    justify-content: space-around;
    
    

    
}

@-webkit-keyframes hvr-pulse-grow {         /* I followed a tutorial to get a hover-pulsing effect for my sub-page directories, The credit should go to w3schools.com */
    to {
      -webkit-transform: scale(1.1);
      transform: scale(1.1);
    }
  }
  @keyframes hvr-pulse-grow {
    to {
      -webkit-transform: scale(1.1);
      transform: scale(1.1);
    }
  }
  .hvr-pulse-grow {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    color: white;
  }
  .hvr-pulse-grow:hover, .hvr-pulse-grow:focus, .hvr-pulse-grow:active {
    -webkit-animation-name: hvr-pulse-grow;
    animation-name: hvr-pulse-grow;
    -webkit-animation-duration: 0.3s;
    animation-duration: 0.3s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-direction: alternate;
    animation-direction: alternate;
  }


    
  
		
    

    


.Headings a:hover{
    
    cursor: pointer;

}



.Headings a:active{

    box-shadow: none;

    top: 5px;
}


                                                                /* I followed a tutorial to get my main Text in the middle to do this animation effect, All credit for the tutorial should go to w3schools.com */

.MainHeading{

    text-align: center;

    position: absolute;

    top:50%;

    left:50%;

    transform: translate(-50%,-50%);

    width: 100%;
}

.MainHeading span{

    color: white;

    text-transform: uppercase;

    display: block;

}

.text1{

    font-size:50px;

    font-weight:700;

    letter-spacing: 8px;

    margin-bottom: 20px;

    color: white;

    position: relative;

    

    animation: text 3s 1;

    font-family: 'calibri-heading';
}


.text2{

    font-size: 20px;

    font-family: 'calibri-heading';


}

@keyframes text {

    0%{
        
    

    margin-bottom:-40px;
    }
    30%
    {
        letter-spacing: 25px;
        margin-bottom: -40px;
    }

    85%{

        letter-spacing: 8px;
        margin-bottom: -40px;
    }
}
.Socials {
    width: 80px; 
    background-color: rgba(0, 0, 0, 0); 
  }
  
  .Socials a {
    display: block; 
    text-align: center; 
    padding: 15px; 
    transition: all 0.3s ease;
    color: white; 
    font-size: 25px; 
  }
  
  .Socials a:hover {
    background-color: #000; 
  }
  
  















