a{
    text-decoration: none;
    color: black;
}
.content {
	margin: auto;
	border: 20px solid black;
	width: 1250px;
	display: flex;
	flex-direction: row-reverse;
}
.font-chapter{
    font-weight: 400;
    font-family: 'Shadows Into Light', cursive;
    font-size: 30px;
}
.resumeInfo {
	display: flex;
	flex-direction: column;
	background: linear-gradient(90deg, #FFD900, #0046AD);
	background-size: 200% 200%;
	animation: animate-bg 10s linear infinite;
	padding: 15px;
}

@keyframes animate-bg {
	0% {
		background-position: 0% 0%;
	}

	25% {
		background-position: 100% 0%;
	}

	50% {
		background-position: 100% 100%;
	}

	75% {
		background-position: 0% 100%;
	}

	100% {
		background-position: 0% 0%;
	}
}

#text {
	color: black;
	transition: color 2s;
}

#background:hover #text {
	color: white;
}

.timeline {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	justify-content: space-between;
}

.timeline-item {
	width: 115px;
	height: 100px;
	padding: 10px;
	margin-bottom: 20px;
	border-radius: 10px;
	box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.line {
	margin: 20px;
	padding: 10px;
    font-size: 20px;
}

.line::after {
	content: "";
	display: block;
	clear: both;
	width: 100%;
	height: 1px;
	background-color: #ccc;
}

.inspiration {
	background-color: #F9A826;

}

.education {
	background-color: #44BBA4;

}

.it-courses {
	background-color: #4ECDC4;

}

.independent-study {
	background-color: #F9D423;

}

.hobbies {
	background-color: #A8D8EA;

}

.dislike {
	background-color: #FF6B6B;

}

.resume {
	text-align: center;
    font-family: 'Comfortaa', cursive;
	font-size: 40px;
	font-weight: 700;
	line-height: 27px;
	letter-spacing: 0em;
}

.about {
	padding-left: 40px;
}
.aside {
	min-width: 370px;
	border-radius: 0px;
	background-color: #1E2939;
	color: white;
}

img {
	height: 200px;
	border-radius: 30%;
	margin: 30px 30px;
}

.contacts {
    font-family: 'Comfortaa', cursive;
	font-size: 22px;
	font-weight: 700;
	line-height: 27px;
	letter-spacing: 0em;
}

.contact-type {
	padding-right: 10px;
    font-family: 'Comfortaa', cursive;
	font-size: 20px;
	font-weight: 500;
	line-height: 30px;
	letter-spacing: 0em;
}

.contact-info {
    font-family: 'Comfortaa', cursive;
	font-size: 14px;
	font-weight: 400;
	line-height: 24px;
	letter-spacing: 0em;
	text-align: left;
	color: white;
	text-decoration: none;
}

.contact-info2 {
    font-family: 'Comfortaa', cursive;
	font-size: 14px;
	font-weight: 400;
	line-height: 24px;
	letter-spacing: 0em;
	text-align: left;
	color: white;
	text-decoration: none;

}
.emoji {
    position: relative;
  }
.emoji::after {
    /* content: &#128170; */
    position: absolute;
    top: -20px;
    left: -10px;
    opacity: 0;
    transition: opacity 0.3s;
  }
.emoji:hover::after {
    opacity: 1;
  }
  .emoji-html::after{
    content: "\1F4AA \1F50C \1F4A1";
}
.emoji-js::after{
    content: "\1F4AA \1F576 \1F4F1 \21E7";
}
.emoji-react::after{
    content: "\1F495 \1F44D \21E7";
}
.emoji-css::after{
    content: "\21C4 \1F44F";
}
.emoji-web::after{
    content: "\1F4AA \1F576 \1F44D \21E7 \21E7";
}
.emoji-git::after{
    content: "\27A1 \1F4BB";
}
.Techskil {
	padding: 47px 0 44px 0;
}

.skills {
    font-family: 'Comfortaa', cursive;
	padding-top: 8px;
	margin: 0;
	font-size: 22px;
	font-weight: 700;
	line-height: 27px;
	letter-spacing: 0em;

}

ul {
	margin: 0px;
	padding: 8px 0 0 17px;
}

.myskill li {
    font-family: 'Comfortaa', cursive;
	padding-bottom: 5px;
	color: #FB6D3A;
	font-size: 14px;
	font-weight: 400;
	line-height: 24px;
	letter-spacing: 0em;
}

.myskill span {
	color: white;
}

@media(max-width: 1330px) {
    .content {
        width: 90%;
    }
    .aside {
        min-width: 270px;
    }
    .timeline {
        /* display: flex; */
        flex-wrap: wrap;
        /* align-items: flex-start;
        justify-content: space-between; */
    }
}
@media(max-width: 560px){
    .content {
        border: none;
        flex-wrap: wrap;
    }
    .aside {
        width: 100vh;
    }
    .font-chapter{
        font-size: 20px;
    }
    .line {
        font-size: 13px;
    }
    .resume {
        font-size: 30px;
    }
    .contacts {
        font-size: 14px;
    }
    h1{
        font-size: 22px;
    }
    h2{
        font-size: 18px;
    }
    p{
        font-size: 13px;
    }
}