body {
  font-family: Arial, sans-serif;
  background-color: #d0d0d0;
}

.full-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center; 
  width: 1000px;
  height: auto;
  margin: auto;
  box-shadow: 0px 20px 20px rgba(0, 0, 0, 0.1); /* Add box shadow here */
  background-color: white ;
}

h2 {
  color: #333;
}

p {
  color: #555;
  line-height: 20px;
}

a {
  color: #007BFF;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img[alt="LinkedIn"],
img[alt="email"]
 {
  padding-left: 10px;
  cursor: pointer;
}

.links {
  text-align: center;
}


.github-logo img,
.linkedin-logo img,
.email-logo img,
.gscholar-logo img {
  width: 30px;
  height: 30px;
  -webkit-transition: -webkit-transform 0.3s ease, filter 0.3s ease;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.github-logo img:hover,
.linkedin-logo img:hover,
.email-logo img:hover,
.gscholar-logo img:hover{
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

.cv-button {
  display: inline-block;
  padding: 10px 20px;
  font-size: 16px;
  color: white;
  background-color: #333;
  border: none;
  border-radius: 5px;
  text-align: center;
  text-decoration: none;
  margin-top: 10px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.cv-button:hover {
  background-color: #858585;
}

.profile-picture{
  vertical-align: top;
  padding-top: 50px;
}


.profile-picture img {
  height: 250px;
  width: 250px;
  border-radius: 125px;
  margin: 20px;
  -webkit-box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.5);
  box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.5);
}



.description-container {
  max-width: 850px;
  display: flex;
  align-items: center;
  justify-content: center;

}


.description {
  padding-left: 23px;
}
.description h2{
  text-align: center;

}
