@charset "utf-8";
/* CSS Document */

.lead {
	color: black;
}

.my-4{
	background:linear-gradient(to left, red,orange,yellow)
}

.jb {
	background:linear-gradient(to left, red,orange,yellow)
}

.blue {
	background: linear-gradient(to right, #29C5F6,#29C5F6)
}

.card{
	transition: all 0.3s;
}

.card:hover {
	transform: scale(1.15);
}

.text {
  text-decoration: none;
}

.text:hover {
  text-decoration: underline;
}

.a {
  background-image: linear-gradient(
    to right,
    #54b3d6,
    #54b3d6 50%,
    #000 50%
  );
  background-size: 200% 100%;
  background-position: -100%;
  display: inline-block;
  
  position: relative;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.3s ease-in-out;
}

.a:before{
  content: '';
  background: #54b3d6;
  display: block;
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 3px;
  transition: all 0.3s ease-in-out;
}

.a:hover {
 background-position: 0;
}

.a:hover::before{
  width: 100%;
}

body {
	background: linear-gradient(to right, #7493ff,#5f6bd8,#ffbc99,#f0e7db)
}

/* Presentational Styles */
