.main_top {
  position: relative; 
  text-align: center;
  margin-bottom: 15px;
}

.my_image {
  width: 350px; 
  height: 250px;
  margin: 0 auto;
  object-fit: cover;
}

.main_top {
  display: flex; 
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 20px; 
  
}

.skill, .main_middle, .left_1, .left_2, .right_1, .right_2 {
  border: 1px solid #D43636;
  border-radius: 20px;
  padding: 8px 25px; 
}

.skill {
  width: 220px; 
}

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

.skills-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 6px 0;
}

.main_middle {
  margin-bottom: 15px;
}

.main_bottom {
  display: flex; 
  flex-direction: row;
  gap: 15px;
}

.left {
  display: flex; 
  flex-direction: column;
  width: 37%; 
  gap: 15px; 
}

.right {
  display: flex; 
  flex-direction: column;
  width: 63%; 
  gap: 15px;
}

.email {
  color: #640C0C; 
  transition: all 0.5s ease; 
}

.email:hover {
  color:#D43636; 
  font-weight: bold; 
  cursor: pointer; 
}

.email:visited {
  color:#D43636; 
  font-weight: bold; 
}

.about_tag {
  border-radius: 20px;
  padding: 3px 15px;
  margin-right: 5px;
  color: #D43636;
  border: 1px dashed #D43636;
  transition: border 0.3s ease;
  position: relative;
  overflow: hidden;
}

.about_tag:hover {
  border: 1px solid #D43636;
  /* box-shadow: 2px 2px 3px #d57c7c; */
}

.about_tag::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.6), transparent);
  transition: all 0.5s ease;
}

.about_tag:hover::after {
  left: 100%;
}

.about_tag_sum {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.about_h2 {
  font-family: "Antonio", sans-serif;
  font-optical-sizing: auto;
  font-weight: 450;
  font-style: normal;
  color: #D43636;
  font-size: 22px;
  text-align: left;
}