/* *{
  overflow-x: hidden;
} */

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #F4F4F4;
}

.container {
  width: 100vw;
  margin: 0 auto;
  background-color: #2B2A4C;
}

.header {
  /* margin: 0; */

  background-color: #EEE2DE;
  color: #000000;
  /* padding: 5px 20px 50px; */
  padding-left: 25vw;
  padding-right: 25vw;
  padding-top: 10vh;
  padding-bottom: 10vh;
  position: relative;
  border-radius: 0 0 30% 30%;
}

.header h1 {
  font-size: 4vw;
  font-weight: bold;
  margin-top: 0;
  margin-bottom: 5vw;
  text-align: center;
}

.profile {
  display: flex;
  gap: 10vw;
  /* margin: 0 0 10px 10px; */
  /* padding-right: 650px; */
  /* padding-left: 500px; */
  justify-content:space-between;
}

.profile-img {
  width: 15vw;
  height: 15vw;
  border-radius: 50%;
  left: calc(50% - 75px);
}

.profile-info{
  height: 15vw;
  width: 100%;
  display: flex;
  padding-left: 8vw;
  flex-direction: column;
  justify-content: center;

}

.header h2 {
  font-size: 2vw;
  font-weight: normal;
  width: auto;
  color: #8C1A11;
  margin-top: 0;
  margin-bottom: 30px;
  text-align: start;
}

.p-contact{
  font-size: 1vw;
  width: auto;
}

.contact-info {
  margin-top: 20px;
  width: auto;
}

.contact-info p {
  text-align: start;
  margin: 5px 0;
}

.content {
  display: flex;
  flex-wrap: wrap;
  /* padding-right: 12vw;
  padding-left: 12vw; */
}

/* .content > div {
  flex: 1;
  margin: 10px;
} */

.skills, .education, .language, .projects, .interests {
  color: #EEE2DE;
  padding: 15px;
  width: 36vw;
  border-radius: 10px;
}

.skills h3, .education h3, .language h3, .projects h3, .interests h3 {
  color: #EA906C;
  text-transform: uppercase;
}

.skills ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.skills ul li {
  margin-bottom: 14px;
}

.skills-bar {
  display: flex;
  flex-direction: column;
  margin-top: 5px;
}

.skill {
  display: flex;
  align-items: center;
}

.education ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.education ul li {
  font-weight: 100;
  margin-bottom: 14px;
}

.projects ul {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}

.projects ul:before {
  content: "";
  display: inline-block;
  width: 4px;
  background: #8C1A11;
  position: absolute;
  left: 3px;
  top: 5px;
  height: calc(100% - 10px);
}

.projects ul li {
  position: relative;
  padding-left: 15px;
  margin-bottom: 25px;
}

.projects ul li:before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #EA906C;
  position: absolute;
  left: 0;
  top: 5px;
  border-radius: 10px;
}

progress {
  border-radius: 1px; 
  width: 60%;
  height: 16px;
}
progress::-webkit-progress-bar {
  background-color: rgb(255, 255, 255);
  border-radius: 5px;
}
progress::-webkit-progress-value {
  background-color: #EA906C;
  border-radius: 5px;
}
progress::-moz-progress-bar {
  background-color: rgb(255, 255, 255);
  border-radius: 5px;
}

.footer {
  background-color: #8C1A11;
  color: #EEE2DE;
  padding-left: 20vw;
  padding-right: 20vw;
  padding-top: 4vh;
  padding-bottom: 5vh;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer h2 {
  margin-bottom: 0px;  
}

.footer p {
  color: #EA906C;
  margin: 5px 0;
}

.footer a {
  color: #FFFFFF;
  text-decoration: none;
}

.social-icons {
  margin-top: 10px;
}

.social-icons a {
  margin: 0 10px;
}

.social-icons img {
  width: 30px;
  height: 30px;
}
