*{
    margin: 0;
    padding: 0;
    font-family: "Ubuntu", sans-serif;
    box-sizing: border-box;
    text-decoration: none;
}

body{
	height: 100vh;
	background: url(/assets/images/joltssNatal.jpg) no-repeat center;
	background-size: cover;
	display: flex;
	align-items: center;
	justify-content: center;
}

.profile-card{
	width: 400px;
	text-align: center;
	border-radius: 8px;
	overflow: hidden;
}

.card-header{
	background: #2c3a47;
	padding: 60px 40px;
	text-align: center;
}

.card-body{
	text-align: center;
}

.pic{
	display: inline-block;
	padding: 8px;
	background: linear-gradient(130deg, #74b9ff, #e66767);
	margin: auto;
	border-radius: 50%;
	background-size: 200% 200%;
	animation: animated-gradient 2s linear infinite;
}

@keyframes animated-gradient{
	25%{
		background-position: left bottom;
	}
	50%{
		background-position: right bottom;
	}
	75%{
		background-position: right top;
	}
	100%{
		background-position: left top;
	}
}

.pic img{
	display: block;
	width: 100px;
	height: 100px;
	border-radius: 50%;
}

.name{
	color: #f2f2f2;
	font-size: 28px;
	font-weight: 600;
	margin: 10px 0;
}

.desc{
	font-size: 18px;
	color: #e66767;
}

.sm{
	display: flex;
	justify-content: space-evenly;
	margin: 20px 0;
}

.sm a{
	color: #e66767;
	font-size: 22px;
	transition: .3s linear;
}

.btn{
	display: inline-block;
	padding: 12px 50px;
	border: 2px solid #e66767;
	border-radius: 6px;
	margin-top: 16px;
	transition: .3s linear;
}

.sm .btn {
	margin-top: 0;
}

.btn-primary{
	color: #e66767;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active{
	background: #e66767;
	color: #f2f2f2;
}

.btn-disabled{
	background: #e6676770;
	color: #f2f2f2;
	pointer-events: none;
}
.btn-disabled:hover{
	cursor: not-allowed;
}

.card-footer{
	background: #2c3a47;
	padding: 10px 10px;
	border-top: 1px solid #e6676770;
	font-size: 13px;
	color: #fff;
}
.card-footer a{
	color: #e66767;
}
.card-footer a:hover,
.card-footer a:focus,
.card-footer a:active{
	color: #bbb;
}

.numbers{
	display: flex;
	align-items: center;
}

.item{
	flex: 1;
	text-transform: uppercase;
	font-size: 13px;
	color: #e66767;
}

.item span{
	display: block;
	color: #2c3a47;
	font-size: 30px;
}

.border{
	width: 1px;
	height: 30px;
	background: #bbb;
}

/* ABOUT */
.card-about{
	width: 100%;
	min-height: 100%;
	background: #2c3a47;
	text-align: center;
}
.card-body{
	border-top: 1px solid #e6676770;
	padding: 30px 10px;
	max-width: 800px;
	margin: 0 auto;
}
.card-body p{
	color: #fff;
	padding: 10px;
	text-align: left;
}
.card-body a {
	color: #e66767;
}