*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

body{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}


.fullname{
    font-family: fantasy;
    font-size: 53px;
    letter-spacing: 3px;
    bottom: 8px;
    background-image: url(./waterdrops.jpg);
    -webkit-text-fill-color: transparent;
	-webkit-background-clip: text;  
    color: white;
    animation: filling 5s ease infinite;
} 

@keyframes filling{
	from{
		background-position: bottom 25%;
	}
	to{
		background-position: center 50%;
	}
}
.flip-card {
    background-color: #6495ed;
    width: 310px;
    height: 480px;
    border: 1px solid #000;
    perspective: 1000px; 
  }
  
.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    
  }
  
.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: linear-gradient(
        45deg,
        rgba(236, 215, 29, 0.5) 40%,
        rgba(91, 14, 214, 0.5) 100%
      );
    color: black;
  }
  
  
.flip-card-back {
    background-color: #E59866;
    color: white;
    transform: rotateY(180deg);
    background: linear-gradient(
        45deg,
        rgba(236, 74, 29, 0.5),
        rgba(91, 14, 214, 0.5) 100%
      );
      
 
    
  }

.prof{
    font-family: fantasy;
    font-size: 38px;
    letter-spacing: 3px;
    padding: 50px;
    color: black;
    text-shadow: white -5px -5px 5px;
}
.prof:hover{
    color: #6495ed;
    font-size: 40px;
    transform: scale(1);
    transition: all .8s;
    text-shadow: black 5px 5px 5px ;
}
.icons {
    display: flex;
    width: 100%;    
    justify-content: space-evenly;
    align-items: center;
    bottom: 15px;
    position: absolute;
    margin-bottom: 35px;
}

.icons a{
    text-decoration: none;
    color: black;
    padding: 15px;
    transform: scale(0.9);
    transition: all 1s;
}
.icons a:hover{
    color: #6495ed;
    border-radius: 5px;
    transform: scale(0.7);
    box-shadow: black 10px 10px 10px;
    background-color: antiquewhite;
    text-shadow: none;
}

.btn{

    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: black;
    border: none;
    border-radius: 6px;
    width: 100px;
    height: 35px;
    transition: all 1s;
    box-shadow: #6495ed -5px -5px 5px;
}
.btn a{
    color: white;
    font-size: 15px;
    font-weight: bolder;
    text-decoration: none;
}
.btn a:hover{
    font-size: 20px;
}

.btn:hover{
    width: 120px;
    height: 45px;
    background-color: #6495ed;
    box-shadow: black 10px 10px 10px;
}
  