body {
  margin: 0;
  background: #ececec;
  font-family: 'Merriweather', serif;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}


/* Whole CV container */
.container {
  display: flex;
  width: 900px;
  min-height: 1200px;
  background: white;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}






/* LEFT SIDE */

.left-section {
  background-color: #1e293b;
  color: white;
  width: 35%;
  padding: 0 30px 30px;
  position: relative;
}
/*top yellow strip styles*/

.top-bar {
  background-color: #fbbf24;
  height: 120px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}


/* Profile section */
.profile {
  text-align: center;
  margin-top: 80px;
  position: relative;
}


.profile-pic {
  width: 140px;
  height: 160px;
  border-radius: 50%;
  border: 5px solid #fbbf24;
  box-shadow: 0 0 15px rgba(251, 191, 36, 0.6);
  object-fit: cover;
  margin-top: -50px;
}
  
.ex{
  border-left: 3px solid #0b1178;
  padding-left: 10px;
}

.profile h2 {
  margin-top: 15px;
}

.contact, .skills {
  margin-top: 40px;
  
}
.contact{
  margin-top: 40px;

}


.contact h3 {
  color: #fff;
  border-bottom: 2px solid #fbbf24;
  display: inline-block;
  margin-bottom: 10px;
}

.contact i {
  margin-right: 10px;
  
  color: #fbbf24;
}


.skills {
 margin-top: 40px;

}


.skills h3 {
  color: #fff;
  border-bottom: 2px solid #fbbf24;
  display: inline-block;
  margin-bottom: 10px;
}


.skills ul {
  list-style: none;
  padding: 0;
}

.skills li {
  margin: 8px 0;
  border-bottom: 1px solid rgba(248, 234, 234, 0.2);
  padding-bottom: 4px;
}


.interests {
  margin-top: 40px;
}

.interests h3 {
  color: #fff;
  border-bottom: 2px solid #fbbf24;
  display: inline-block;
  margin-bottom: 10px;
}

.interests ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.interests li {
  margin: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 4px;
  color: #f2f1ee;
}








/* RIGHT SIDE */

.right-section {
  background: white;
  width: 65%;
  padding: 40px;
}

.right-section h2 {
  color: #fbbf24;
  border-bottom: 2px solid #fbbf24;
  display: inline-block;
  margin-bottom: 10px;
}

.right-section section {
  margin-bottom: 30px;
}