html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  width: 100%;
  background-color: #f4f4f4;
  color: #333;
}

.margin-top {
  margin-top: 50px;
}

.padding {
  padding: 0 20px;
}

.box {
  padding: 0 20px;
  border-left: 2px solid #333;
  border-top-left-radius: 10px;

}

.bold {
  font-size: 1.5rem;
}

.icon {
  width: 1.4rem;
  height: 1.4rem;
}

.header {
  display: flex;
  background: #ddd;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  box-shadow: 0 1px 10px 5px #ddd;
  top: 0;
  /* width: 100%; */
}

.header ul {
  display: flex;
  gap: 2rem;
  height: auto;
  justify-content: flex-end;
}

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

.header ul li a {
  text-decoration: none;
  color: #444;
  font-size: 1rem;
}

.content {
  padding: 0 20px;
}

.about {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.about-info {
  flex: 3;
}

.about-image {
  flex: 1;
  display: flex;
  justify-content: center;
  border-color: black;
}

.about-image img {
  height: 360px;
  width: 270px;
  border-radius: 20px;
}

.education-box,
.experience-box {
  display: flex;
  flex-direction: column;
  /* border: #333 solid 1px; */
  margin-bottom: 20px;
}

.education-header,
.experience-header {
  font-size: 1.1rem;
  font-weight: bold;
  margin: 1px;
}

.education-desc {
  margin: 0;
  color: #444;
  font-style: italic;
}

.education-data,
.experience-data {
  font-style: italic;
  display: flex;
  gap: 20px;
  margin: 0;
}

.education-data>p,
.experience-data>p {
  margin: 0;
  padding: 0;
  font-size: 0.9rem;
}

.experience-desc {
  margin: 0;
  ;
}

.vertical {
  width: 2px;
  background: #333;
}

.contacts-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
}

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

.contacts-list li a {
  text-decoration: none;
  color: #333;
  display: flex;
  align-items: center;
  gap: 5px;
}

.footer {
  display: flex;
  justify-content: center;
  padding: 20px;
  /* width: 100%; */
  background-color: #ddd;
  box-shadow: 0 1px 10px 5px #ddd;
  font-size: 1.2rem;

}

.footer a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  text-decoration: none;
  color: #444;
}

@media (max-width: 768px) {
  .header ul {
    display: none;
  }

  .about {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
  }

  .flex-flow {
    flex-direction: column;
    align-items: baseline;
  }

}