html {

  width: 100%;
  height:auto;

  margin: 0;
  border: 0;
  padding: 0;
}

body {

  display: flex;

  width: 100%;
  height: 100%;

  margin: 0;
  border: 0;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 0;
  padding-right: 0;

  justify-content: center;
}

.aboutImage {

  width: 250px;
  height: auto;

  max-width: 100%;

  min-height: 0px;
  min-width: 0px;

  object-fit:contain;

}

.galleryImage {

  max-height: 100%;
  max-width: 100%;

  min-height: 0px;
  min-width: 0px;

  object-fit:contain;
}

p {
  font-family: myFont2;
  font-size: clamp(22px, 2.8vw, 28px);
  text-align: left;
  margin:12px;
}

a {
  display:flex;
  flex-direction: column;
  width:auto;
  height:auto;
  font-family: myFont2;
  font-size:min(18px, 5vw);
}

figure {

  display:flex;
  flex-direction: column;
  height:min-content;
  width:auto;
  margin:0px;
  justify-content: center;
  align-items: center;
  border: 1px solid rgba(100, 100, 100, 0);
  background-color: rgba(240, 240, 240, 0);
}

#grdAbout {

  display:grid;
  width:100%;
  height: 100%;
  grid-template-rows: 100px max-content max-content auto 20px;
  grid-template-columns: 1fr;
  grid-row-gap:8px;
  justify-content:stretch;
  align-content:stretch;
  justify-items:center;
  align-items:stretch;
}

#AboutButton {
  grid-row: 1;
  grid-column: 1;
}

#AboutHeader {
  grid-row: 2;
  grid-column: 1;
}

#AboutImage {
  grid-row: 3;
  grid-column: 1;
}

#AboutContent {

  grid-row: 4;
  grid-column: 1;

  display:flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  align-items: center;
  font-family: myFont2;
}

.linkImage {
height: auto;
width:clamp(200px,40vw,300px);
margin-left: 18px;
margin-right: 18px;
margin-top: 6px;
margin-bottom:6px;
}

#aboutLinks{
    display:flex;
    flex-direction: row;
    justify-content: center;
    text-align: center;
    align-items: center;
}

#AboutCopyright{
  grid-row: 5;
  grid-column: 1;
  padding-left: 8px;
  padding-right: 8px;
}

@media (max-width:580px) { /* Change to your desired breakpoint */
    #aboutLinks {
      flex-direction: column; /* Change flex-direction to column */
    }
  }
  
