
@font-face {
    font-family: "Poppins";
    src: url("assets/fonts/Poppins-Light.ttf");
    font-weight: 300;
}
@font-face {
    font-family: "Poppins";
    src: url("assets/fonts/Poppins-Regular.ttf");
    font-weight: 400;
}
@font-face {
    font-family: "Poppins";
    src: url("assets/fonts/Poppins-SemiBold.ttf");
    font-weight: 600;
}

body {
    font-family: Popins, sans-serif;
    background-color: #f5f5f5;
    color: #333;
    margin: 10px;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

* {
    box-sizing: border-box;
  }

.container {
  max-width: 1440px;
  margin: 0 auto;
}

header {
    background-color: #364F6B;
    padding: 10px 40px;
    margin: 10px;
    border-radius: 20px;
    color: white;
}

.ul-link {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: right;
}

.menu-item {
   margin: 0 15px;
}

.menu-link, .myGitHub {
    text-decoration: none;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 300;
    color: white;
    backgroung-color: none;
}

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

.main-title {
    font-size: 40px;
    font-weight: 600;
    color: #3FC1C9;
    margin-top: 0;
    margin-bottom: 20px;
}

.about-myself {
    margin-top: 20px;
}

h2 {
    font-size: 26px;
    font-weight: 600;
    color: white;
    margin: 20px 0;
   }

h3 {
    font-size: 16px;
    font-weight: 600;
}

p {
    line-height: 145%;
    margin: 6px 0px;
}

pre {
    margin: 0px;
}

.separators {
    margin: auto 0px;
}

.two-colums {
    padding: 10px;
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
}

.left-colums {
    width: 30%;
    vertical-align: baseline;
    margin-right: 20px;
}
.title-cv {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 10px;
}

.img-wrapper {
    width: 100%;
}

.avatar {
    border-radius: 20px;
    display: block;
    width: auto;
}

.contacts {
    color: white;
}


.right-colums {
    width: 70%;
    padding: 20px 40px;
    margin-left: 20px;
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.line {
    width: 100%;
    height: 1px;
    background-color: #3FC1C9;
}

.contact-colums {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.contact-link {
    display: flex;
    flex-direction: row;
    gap: 10px;
    text-decoration: none;
    color: white;
}

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

.contact-right-colomn {
    margin-left: 60px;
}

.ul-contacts {
    list-style: none;
    text-align: left;
    padding-left: 0px;
    margin-top: 0px;
}

.contacts-icon {
    background-color: #3FC1C9;
    width: 32px;
    height: 32px;
    padding: 5px;
    border-radius: 20px;
}

.contact-item {
    padding: 2px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 10px;

}

.left-colums-second {
    width: 40%;
    background-color: #364F6B;
    padding: 20px 40px;
    border-radius: 20px;
}

.right-colums-second {
    width: 60%;
    background-color: #3FC1C9;
    border-radius: 20px;
    margin-left: 20px;
    padding: 20px 40px;
}

.left-colums-third {
    width: 60%;
    background-color: #364F6B;
    padding: 20px 40px;
    border-radius: 20px;
}

.right-colums-third {
    width: 40%;
    background-color: #3FC1C9;
    border-radius: 20px;
    margin-left: 20px;
    padding: 20px 40px;
}

.ul-skills, .ul-education, .ul-experiens, .ul-langueges {
    color: white;
    padding-left: 20px;
}

.li-skill, .li-education, .li-experiens, .li-langueges {
    margin: 6px 0px;
}



.code-example {
    width: 50%;
    padding: 20px 40px;
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.experiens {
    width: 50%;
    background-color: #364F6B;
    border-radius: 20px;
    padding: 20px 40px;
    margin-left: 20px;
}
.dark-title  {
    color: #364F6B;
}

.footer-wrap {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    margin: 10px;
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);

}

.myGitHub {
    display: flex;
    flex-direction: row;
    text-decoration: none;
    font-size: 12px;
    text-transform: uppercase;
    color: #364F6B;
    backgroung-color: none;
}

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

.logo-git {
    margin-right: 10px;
}