*::selection{
  color: white;
  background-color: rgb(21, 20, 20);
}
body {
    background-color: rgb(224, 224, 238);
    line-height: 1.8;
    font-weight: 300;
    color: #555555; 
}
  .nav-link{
    transition: 0.5s;
    font-weight: 500;
  }
    .nav-link:hover{
      color: #d60606 !important ;
     
    }
    ul li a{
        margin-left: 15px;
        transition: 0.3s;
        font-weight: 400;
    }
    ul li a:hover{
      color: #d60606 !important ;
  }
    a{
      cursor:pointer;
    }
    
    p{
      padding-bottom:1rem;
    }
    
    h5{
      font-weight:bold;
      color:#2b2b2b;
    }
    
    .box-shadow{
      -webkit-box-shadow: 0 1px 1px rgba(72,78,85,.6);
      box-shadow: 0 1px 1px rgba(72,78,85,.6);
      -webkit-transition: all .2s ease-out;
      -moz-transition: all .2s ease-out;
      -ms-transition: all .2s ease-out;
      -o-transition: all .2s ease-out;
      transition: all .2s ease-out;
    }
    
    .box-shadow:hover{
      -webkit-box-shadow: 0 20px 40px rgba(72,78,85,.6);
      box-shadow: 0 20px 40px rgba(72,78,85,.6);
      -webkit-transform: translateY(-15px);
      -moz-transform: translateY(-15px);
      -ms-transform: translateY(-15px);
      -o-transform: translateY(-15px);
      transform: translateY(-15px);
    }
    
    .card{
      border-radius: 25px;
      
    }
    
    .card img{
      border-top-left-radius: 25px;
      border-top-right-radius: 25px;
    }
    
    .card svg{
      position:absolute;
      top:19rem;
      -webkit-transition: all .2s ease-out;
      -moz-transition: all .2s ease-out;
      -ms-transition: all .2s ease-out;
      -o-transition: all .2s ease-out;
      transition: all .2s ease-out;
      filter:drop-shadow(2px -9px 4px rgba(0, 69, 134, 0.2));
    }
    .card:hover svg{
      filter:drop-shadow(2px -9px 4px rgba(0, 69, 134, 0.4));
    }
    
    .s{
      position:sticky;
      top: 18rem;
      right: 2rem;
      padding: 50px;
      border-radius: 100%;
      color: rgb(255, 255, 255);
       background-image: url(images/pngwing.com\ \(82\).png); 
       background-size: cover; background-position: center;
    }
    
 .hi{
	transform: translatey(0px);
	animation: float 4s ease-in-out infinite;
 }
 @keyframes float {
	0% {
     rotate: -5deg;
     transform: translatey(0px);
	}
	50% {
    rotate: 3deg;
		transform: translatey(-20px);
	}
	100% {
    rotate: -5deg;
		transform: translatey(0px);
	}
}

@media screen and (max-width: 400px) {
  .p {
    visibility: hidden;
  }
}
@media screen and (min-width: 1000px) {
 .p {
    visibility: visible;
    background-image: url(images/footer.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 200px;
    margin-top: -70px;
  }

}
@media screen and (min-width: 800px){
  
}
.p{
	transform: translatey(0px);
	animation: A 4s ease-in-out infinite;
 }
 @keyframes A {
	0% {
  
     transform: translatey(0px);
	}
	50% {

		transform: translatey(-20px);
	}
	100% {

		transform: translatey(0px);
	}
}

.float{
	position:fixed;
	width:60px;
	height:60px;
	bottom:40px;
	right:40px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
  font-size:30px;
  z-index:100;
}
.my-float{
	margin-top:16px;
}
.intro{
	position:fixed;
	bottom:20px;
	right:20px;
  z-index:100;
}

#Contact{
  background-image:linear-gradient(rgba(0, 0, 0, 0.76), black), url(images/full-shot-scary-character-posing_23-2150701204.jpg); 
  border-top: solid 2px rgb(172, 2, 2);
}

blink {
  animation: blinker 2s linear infinite;
  color: rgb(0, 0, 0);
  margin-bottom: 20px;
}
blink span {
  color: rgb(227, 18, 18);
  font-weight: bolder;
  margin-bottom: 20px;
}

@keyframes blinker {
  50% {
      opacity: 0;
  }
}