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

}

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


.fullname{
    font-family: 'splash', cursive;
    margin-right: 140px;
    padding-top: 5px;
    font-size: 55px;
    line-height: 50px;
    letter-spacing: 5px;
    bottom: 4px;
    text-shadow: none;
    background-image:url(./—Pngtree—christmas\ green\ pine\ branch\ golden_6843978.png);
    -webkit-text-fill-color: transparent;
	-webkit-background-clip: text;  
    color: white;
    animation: filling 8s ease infinite;
} 

@keyframes filling{
	from{
		background-position: right 30%;
	}
	to{
		background-position: left 50%;
	}
}

.flip-card {
    background-color: #6495ed;
    width: 480px;
    height: 310px;
    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;    
  }
  .chur{
    font-size: 35px;
  }

  .info{
    color: #fff;
    font-size: 10px;
  }
  
  
.flip-card-front {
    background-image: url(./red\ tree);
    background-size:cover ;
    font-family: fantasy;
    text-shadow: #000 3px 3px 3px; 
    color:red;
    letter-spacing: 2px;
  }

  .flip-card-front img{
    background-color: #fff;     
    width:60px;
    height:60px;
    margin-top:13px;                          
  }

  #msg img{
    width: 120px;
    height: 120px;
    border-radius: 100px;
  }
  #msg img{
    margin-left:1rem;
    shape-outside:circle();
    float: left;
    margin-right: 2rem;
}

  
  
.flip-card-back {
    transform: rotateY(180deg);  
    background-image: url(./red\ tree);
    background-size: contain;
  }


.inner-back{
  padding-top: 15px;
  color: white;
  text-shadow:#000 4px 4px 4px;
  width:100%;
  height:75vh;
  font-size: 15px;
  font-weight:normal;
  text-align: center;
}


.icons {
  padding-top: 20px;
  display: flex;
  width: 480px;
  justify-content: space-evenly;
  align-items: center;
  background-color: transparent;
  margin-bottom: 10px;
  
}

.fa-brands{
  color: #fff;
}
.fa-brands:hover{
  color: #6495ed;
}

a{
  color: #fff;
  text-decoration:none;
}

.fa-solid{
  color: #fff;
}
.fa-solid:hover{
  color: #6495ed;
}

.click{
  margin-left: 10px;
  width: 80px;
  height: 35px;
  border: none;
  border-radius: 5px;
  background-color: transparent;
  color: white;
  font-weight: bolder;
  transition: all 1s;
  box-shadow: #6495ed -3px -3px 3px;
}

.click:hover{
  background-color: #6495ed;
  box-shadow: black 5px 5px 5px;
}

.copyright{
  display: flex;
  flex-direction: column;
  margin-left: 25px;
  color: white;
  font-size: 12px;
}

.copyright a{
  color: white;
  text-decoration: none;
}
.tag{
  
 text-shadow:3px 3px 3px black;
 animation:bayo 2s ease 1s infinite;  
}

@keyframes bayo{

 0%{
    transform:rotateX(-45deg);
}
 50%{
    transform:rotateY(45deg);
}
}

