.image-resize {
    width: 20rem;
    height: auto;
}
.logo-resize {
    max-width: 10rem;
    max-height: 10rem;
    margin: 0 auto;
    display: block;
}
#expandableSection {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-in;
}
#expandableSection.show {
  max-height: fit-content; 
}