/* css styles */

.purplebox {
    background-color: #e3dfff; 
    border: 3px solid #7a5fa3;
    color: #3d236f;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    font-weight: bold;
    font-family: sans-serif;
  }

.bluebox {
    background-color: lightblue;
    border: 3px solid darkblue;
    color: #3d236f;
    padding: 10px;
    border-radius: 8px;
    font-weight: bold;
    font-family: sans-serif;
  }
  

.image-text-container {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 2rem;
}


.image-text-container .image-side {
  flex: 0 0 40%;
}

.image-text-container .text-side {
  flex: 0 0 60%;
}

.profile-pic {
  width: 350px; 
  height: 600px;
  border-radius: 10px; 
}

.centered-title {
  text-align: center;
  font-size: 2.5rem;
  color: black;
  margin-top: 0rem;
}