* {
    font-family: Arial, Helvetica, sans-serif;
	color: white;
}

body {
	background-color: #222;
}

.container {
	margin: 0px;
}

h1 {
    font-size: 2.8rem;
}

h2 {
	font-family: "Prosto One", sans-serif;
	font-weight: bold;
    font-size: 2rem;
	color: white;
	padding: 0 20px;
	margin: 3px 0;
	display: flex;
}

h1,
.sub-header {
	font-family: "Prosto One", sans-serif;
	font-weight: bold;
	color: white;
}

.icon-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

li {
	margin-bottom: 20px;
}

.sub-ul {
	margin: 20px 20px 20px 45px;
}

nav,
header,
main,
footer {
	max-width: 1440px;
	margin: 0 auto;
}

header {
	background-image: url("assets/images/cv/header.jpg");
    background-color: #0174EC;
    color: white;
    display: flex;
    align-items: center;
	height: 400px;
}

.photo-container {
    margin: 10px 70px;
}

.photo-image {
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #4AE;
}

.name-container {
    text-align: center;
    flex-grow: 1;
}

.nav-links {
	list-style: none;
	display: flex;
	justify-content: center;
	padding: 0;
	margin: 0;
	width: 100%;
}

.nav-links li {
	flex: 1;
	text-align: center;
}

.nav-links li a {
	font-family: "Prosto One", sans-serif;
	background-color: #05F;
	color: white;
	font-weight: bold;
	text-decoration: none;
	display: block;
	padding: 15px 0;
}

.nav-links li a:hover {
	background-color: #8DF;
	color: black;
}

.section-image-container,
.section-header,
.section-header-decor,
.section-separator-top,
.section-separator-bottom {
	background-color: #0174EC;
}

.section-header-container {
	display: flex;
	justify-content: flex-start;
	margin: 10px 20px;
}

.section-image-container {
	margin: 0 5px;
	padding: 4px;
}

.section-image {
	width: 56px;
	height: 56px;
}

.section-separator-top,
.section-separator-bottom {
	height: 2px;
	margin: 5px 25px;
	padding: 0;
}

.section-separator-bottom {
	margin-bottom: 35px;
}

.section-header {
	margin: 0 5px;
	padding: 10px 140px 10px 10px;
}

.section-photo {
	float: left;
	margin-right: 20px;
	margin-bottom: 20px;
}

.section-header-decor {
	margin: 0 5px;
	padding: 10px;
}

.section-content {
	display: flex;
	justify-content: space-evenly;
	align-items: flex-start;
	gap: 20px;
	padding: 0 25px;
	margin-bottom: 130px;
}

.link-icon {
	width: 24px;
	height: 24px;
	margin-right: 10px;
}

.horizontal-list {
	display: flex;
	justify-content: space-between;
	list-style: none;
	padding: 0;
	margin: 0;
	width: 100%;
}

.horizontal-list li {
	text-align: center;
}

.about-me-photo {
	width: 128px;
}

.edu-photo {
	width: 490px;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); 
  gap: 10px;
  padding: 10px;
}

.project-card {
  background: #000000;
  border: 1px solid #DADADA;
  border-radius: 5px;
  overflow: hidden;
}

.project-card img {
  width: 100%;
  height: auto;
  display: block;
}

.project-info {
  padding: 15px;
}

.code-sample-task {
	float: left;
	margin-right: 20px;
	width: 20%;
}

#code-sample i {
    font-family: "Handlee", cursive;
    font-size: 1.6rem;
}

#code-sample code {
    font-family: "Sono", monospace;
	background-color: lightgray;
	color: black;
	display: block;
	padding: 25px;
	margin: 10px 0;
}

footer {
    color: white;
    background-color: #0174EC;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-year {
    font-weight: bold;
    font-size: 1rem;
    margin: 5px;
}

.footer-links img {
    align-items: center;
    flex-grow: 1;
    margin: 5px;
    height: 36px;
    width: auto;
}

