.centered-group {
  display: flex;
  flex-direction: column;
  align-items: center; /* Horizontal centering */
  justify-content: center; /* Vertical centering */
  margin-top: auto; /* Auto margins for vertical centering */
  margin-bottom: auto;
}

.aspect-ratio-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.aspect-ratio-container img {
  max-width: 70%; 
  max-height: 70%; 
  width: auto; 
  height: auto;
  margin: auto; 
}

.text-container {
  /* Style as needed, ensure it aligns with the logo above */
  text-align: center;
  padding: 10px;
}

.offering-italic-text {
  font-style: italic;
  font-size: calc(8px + 2vmin);
}

.zoom-button,
.email-button {
  color: inherit;
  text-decoration: none;
  text-align: center;
  margin-top: 5px; 
  margin-bottom: 5px; 
  display: flex;
  align-items: center;
  justify-content: center; 
  font-size: 12px;
  padding: 10px 10px;
  border-radius: 10px;
  max-width: 150px; 
  color: white;
  background-color: black;
  cursor: pointer; 
  transition: background-color 0.3s ease;
}

.zoom-button a,
.email-button a {
  color: inherit; /* Inherits the white color from the button */
  text-decoration: none; /* Removes underline */
}

.zoom-button:hover,
.email-button:hover {
  background-color: gray; /* Darker gray color on hover */
  color: black;
  text-decoration: none;
}

.zoom-button:hover a,
.email-button:hover a {
  text-decoration: none; /* Ensure no underline on hover */
}

.linkedin-button {
  margin-right: 0px; 
  display: inline-block;
  background-color:white; 
  padding: 0px 0px;
  border-radius: 0px;
  text-decoration: none; 
  transition: background-color 0.3s ease; 
}

.linkedin-button:hover {
  background-color: #555; /* Darker gray color on hover */
}