* {
  box-sizing: border-box;
}

body {
  background: #eeeeee;
  display: flex;
  justify-content: center;
  padding: 30px 20px;
  color: #292828;
  font-family: 'Montserrat', sans-serif;
}

.cv {
  width: 860px;
  background: #e1e1d9;
  padding: 40px 34px;
  border-radius: 20px;
  box-shadow: 0 6px 18px #292828(0, 0, 0, 0.08);
}

.top-row {
  display: flex;
  justify-content: space-around;
  margin-bottom: 40px;
}

.contact-item {
  font-size: 13px;
  display: flex;
  gap: 8px;
}

.label {
  font-weight: 700;
  letter-spacing: 1px;
}

.main-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 20px;
}

.main-grid .small-name {
  width: 353px;
  display: flex;
  justify-content: right;
  margin-top: 15px;
}

.main-grid .skills {
  display: flex;
  justify-content: center;
}

.big-title {
  font-family: 'Anton', sans-serif;
  font-size: 120px;
  margin-bottom: 6px;
  line-height: 90px;
}

.small-name {
  display: flex;
  justify-content: space-around;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.intro {
  font-size: 15px;
  margin-bottom: 20px;
}

.section h4 {
  font-size: 18px;
  margin-bottom: 8px;
}

.skills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.skills span {
  padding: 6px 14px;
  border: 2px solid #292828;
  border-radius: 20px;
  font-size: 13px;
}

.skills .sk {
  background-color: #292828;
  color: #eeeeee
}

.photo-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  align-self: flex-start;
}

.photo-wrap img {
  width: 260px;
  height: 260px;
  object-fit: cover;
  border-radius: 6px;
}

.bottom-name {
  display: flex;
  justify-content: space-around;
  font-size: 140px;
  font-family: 'Anton', sans-seri;
}

.right-col {
  display: flex;
  flex-direction: column;
  align-items: center;
}