body {
  font-family: Georgia, 'Times New Roman', Times, serif;
  margin: 0;
  padding: 0;
  text-align: center;
  background-color: #e0e4f2;
}

.container {
  max-width: 800px;
  margin: 50px auto;
  padding: 20px;
  background: #f0f4ff; 
  box-shadow: 0px 0px 10px #a1b2e4;
  border-radius: 10px;
  transition: transform .2s;
}
.container:hover {
  transform: scale(1.05); 
}

h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

.subtitle {
  font-size: 18px;
  color: gray;
  margin-bottom: 30px;
}

.profile-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
}

.about, .details {
  width: 40%;
}

.profile-pic {
  width: 20%;
  text-align: center;
  padding: 30px;
}

.profile-pic img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
}

.infy-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
}

.skill-images {
  display: flex;
  margin: auto;
  width: 50%;
}

.picture {
  flex: 33.33%;
  padding: 15px;
  transition: transform .2s;
}
.picture:hover{
  transform: scale(1.05); 
}

img{
  height: 100px;
  width: 70px;
  border-radius: 10px;
}
