body {
  font-family: Georgia, serif;
  display: flex;
  justify-content: center; /* horizontal center */
}

.container {
  max-width: 1000px;
  width: 100%;
  padding: 20px;
}

.header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding-bottom: 70px;
  padding-left: 10px;
}

.profile-pic {
  width: 200px;
  height: auto;
  border-radius: 50px;
}

.profile-info {

}

.name {
  font-size: 60px;
  font-weight: bold;
  margin: 40px 0 8px 0;
}

.icon-row {
  display: flex;
  gap: 12px;
}

.icon {
  width: 40px;
  height: auto;
  transition: transform 0.2s ease;
}

.icon:hover {
  transform: scale(1.1);
}


section {
  position: relative;
  border-top: 2px solid rgb(0, 0, 0);
  
  padding: 1.5em 1em 1em 1em; 
  margin-bottom: 2em;
}

section h2 {
  position: absolute;
  top: -1.5em;
  left: 2em;
  background: white;
  padding: 0 0.4em;
  font-size: 1.2em;
}

.ventures-links {
  display: flex;
  flex-direction: horizontal; /* stack vertically */
  align-items: center;     /* center horizontally */
  gap: 1.5em;              /* spacing between logos */
}


.website-logo{
  width:500px;
  height:auto;
  transition: transform 0.2s ease;
}

.website-logo:hover {
  transform: scale(1.05);
}


.articles{
  display: flex;
  flex-direction: column; /* stack vertically */
  align-items: center;     /* center horizontally */
  gap: 1.5em;              /* spacing between logos */
}

.article{
  width:800px;
  height:auto;
  transition: transform 0.2s ease;
}

.article:hover {
  transform: scale(1.05);
}

.gallery{
  display: flex;
  flex-direction: column;
  align-items: center;     /* center horizontally */
  gap: 1.5em;              /* spacing between logos */
}

.two_images{
  display: flex;
  flex-direction: row;
  gap: 1.5em; 
}

.image{
  width:500px;
  height:auto;
  border-radius: 10px;
  transition: transform 0.2s ease;
}

.image:hover {
  transform: scale(1.05);
}

.image-container {
  position: relative;
  display: inline-block;
}

.hover-text {
  position: absolute;
  bottom: 10px;
  left: 10px;
  color: white;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 5px 10px;
  border-radius: 5px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none; /* lets you click the image behind */
  font-size: 1em;
}

.image-container:hover .hover-text {
  opacity: 1;
}




