.header {
    background-image: url('../../images/wallpaper-header.jpg');
	color: #fff;
}

.header .intro .container .black-layer {
    position: absolute;
	top: 0;
	left: 0;
    z-index: -100;
    height: 100%;
    width: 100%;
	background-color: rgba(0, 0, 0, 0.795);
}

.header .profile-image {
	width: 160px;
	height: 160px;
	display: block;
	margin: auto;
	margin-bottom: 30px;
	border-radius: 50%;
}

.header .name {
	font-size: 48px;
	margin-bottom: 15px;
	letter-spacing: 0.5px;
	font-weight: 600;
}

.header .title {
	font-size: 28px;
	font-weight: 300;
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 30px
}

.header .intro {
    /* background:var(--dark-blue); */
    z-index: 100;
	padding-top: 30px;
	padding-bottom: 60px;
	position: relative;
	font-size: 1rem;
	height: 100vh;
	display: flex;
	align-items: center;
}

.header .profile {
	max-width: 800px;
	margin: 0 auto
}

.header .profile span {
	padding: 0.5rem 1rem;
	border-radius: 7px;
	border: 1px solid var(--bs-gray);
	font-size: 1.5rem;
	animation: myAnimation 5s ease 0s infinite normal none;
}

@keyframes myAnimation {
    0%{
        opacity: 1;
    }
    25%{
        opacity: 0;
    }
    50%{
        opacity: 1;
    }
    75%{
        opacity: 0;
	}
	100% {
		opacity: 1;
	}
}