*,
::after,
::before {
  box-sizing: border-box;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

body {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 14px;
  --color-text: #1f1f1f;
  background-color: #ffffff;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  cursor: pointer;
}

img {
  display: block;
}

/* end of general styles */

.navbar-menu {
  display: none;
}

.header {
  border-bottom: 2px solid #e0e0e0;
  background-color: #fffffd;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  margin: 0 auto;
  max-width: 1024px;
}

.header-link {
  color: var(--color-text);
  display: flex;
  cursor: pointer;
}

.header-link p {
  width: 36px;
  height: 36px;
  border: 2px solid var(--color-text);
  border-radius: 4px;
  font-size: 20px;
  font-weight: 600;
}

.header-nav {
  font-size: 16px;
  line-height: 170%;
}

.hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 280px 0px;
  margin: 0 auto;
  max-width: 550px;
}

.hero-title {
  font-size: 36px;
  font-weight: 400;
  margin-bottom: 12px;
}

.hero-text {
  font-weight: 300;
  font-size: 20px;
  margin-bottom: 50px;
}

.svg-container {
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease-in-out;
}

.svg-container:hover,
.svg-container:focus {
  transform: scale(1.1);
}

.about {
  color: var(--color-text);
  background: #f2f2f2;
}

.about-me-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 26px;
  margin: 0 auto;
  max-width: 550px;
}

.about-title {
  font-weight: 500;
  font-size: 30px;
  text-transform: capitalize;
  text-align: center;
  margin-bottom: 40px;
}

.about-text {
  line-height: 133%;
  margin-bottom: 30px;
  text-indent: 1.5em;
  text-align: justify;
}

.about-photo {
  border-radius: 30px;
  display: block;
  margin: 0 auto;
}

.experience {
  color: var(--color-text);
}

.experience-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 26px;
  margin: 0 auto;
  max-width: 550px;
}

.experience-title {
  font-weight: 500;
  font-size: 30px;
  text-transform: capitalize;
  text-align: center;
  margin-bottom: 40px;
}

.former-workplace-box {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.former-workplace-box:last-child {
  margin-bottom: 0;
}

.workplace-desc {
  display: flex;
  gap: 16px;
  margin-left: 12px;
}

.workplace-text-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
}

.workplace-name {
  font-weight: 500;
  font-size: 20px;
  font-style: italic;
  text-decoration: underline;
}

.workplace-position {
  font-weight: 400;
  font-size: 12px;
  line-height: 133%;
}

.workplace-resp-list {
  font-weight: 400;
  font-size: 14px;
  line-height: 133%;
  display: flex;
  flex-direction: column;
  text-align: justify;
  gap: 10px;
  letter-spacing: -0.02em;
}

.main-projects {
  color: var(--color-text);
  background: #f2f2f2;
}

.main-projects-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 26px;
  margin: 0 auto;
  max-width: 550px;
}

.main-projects-title {
  font-weight: 500;
  font-size: 30px;
  text-transform: capitalize;
  text-align: center;
  margin-bottom: 40px;
}

.projects-container {
  display: flex;
  flex-direction: column;
  gap: 32px;
  font-weight: 400;
  line-height: 133%;
  color: var(--color-text);
}

.first-project {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
  align-items: center;
}

.project-screenshot {
  border-radius: 4px;
}

.project-text-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.project-name {
  font-weight: 500;
  font-size: 20px;
  text-transform: capitalize;
  margin-left: 8px;
  margin-bottom: 4px;
  text-decoration: underline;
}

.project-desc {
  font-size: 14px;
  text-align: center;
}

.project-languages-list {
  display: flex;
  gap: 4px;
  font-weight: 400;
  font-size: 12px;
  line-height: 133%;
  color: #6f6f6f;
  text-wrap: wrap;
}

.project-links-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 4px;
}

.project-links-list li,
.project-links-list li a {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.project-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  transform: scale(1.08);
}

.link-icon {
  transform: scaleX(1.12) scaleY(1.15);
}

.second-project {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
  align-items: center;
}

.other-projects {
  color: var(--color-text);
  background: #f2f2f2;
}

.other-projects-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0px 26px 60px;
  margin: 0 auto;
  max-width: 550px;
}

.other-projects-title {
  text-transform: capitalize;
  font-weight: 500;
  font-size: 30px;
  margin-bottom: 40px;
}

.other-projects-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.other-projects-item {
  display: flex;
  gap: 12px;
}

.project-item-img {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  border-radius: 2px;
  margin-top: 2px;
}

.project-item-desc {
}

.project-item-name {
  font-weight: 500;
  font-size: 20px;
  text-transform: capitalize;
  margin-bottom: 8px;
  text-decoration: underline;
}

.project-item-text {
  font-size: 14px;
  line-height: 133%;
  margin-bottom: 16px;
  text-align: justify;
}

.other-project-languages-list {
  display: flex;
  gap: 10px;
  margin-bottom: 8px;
}

.project-language-item {
  font-size: 12px;
  line-height: 133%;
  color: #6f6f6f;
  text-wrap: wrap;
}

.other-projects-links-list {
  display: flex;
  gap: 16px;
}

.other-projects-links-item {
}

.other-projects-link {
}
