


body {
  --linkColor: #00d0ff;
  --textColor: #FFF;
}


.lomaa-logo img {
  margin-top: 20px;
}



#funders h2 {
  margin: 6rem 0 1rem 0;
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
}
.funder {
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  width: 100%;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  text-decoration: underline;
  color: var(--linkColor);
}

.funder img {
  width: 80%;
  max-width: 400px;
}

#AboutModal {
  width: 100vw;
  z-index: 1000;
  position: fixed;
  top: 0px;
  background-color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FFF;
  transform: translateY(0px);
}

.AboutModalAnimateIn {
  animation-name: fadeIn;
  animation-iteration-count: 1;
  animation-duration: 0.5s;
  animation-delay: 0s;
}

#AboutModalHeader {
  position: sticky;
  width: 100%;
  display: flex;
  justify-content: center;
  top: 0px;
  background-color: #000;;
}

#AboutModalContents {
  width: 100%;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  transform: translateY(0);
  animation-name: modalUp;
  animation-iteration-count: 1;
  animation-duration: 0.5s;
  animation-delay: 0s;
}

#AboutModalContents h1 {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.8rem;;
}

#AboutModalClose {
  position: absolute;
  top: 0;
  left: 0;
  padding: 0.2rem;
  background-color: #0000;
  border: 0px solid #000;
  width: 8rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  z-index: 20000;
}

#AboutModalClose svg {
  height: 2rem;
  width: 4rem;
}
#AboutModalClose:hover {
  cursor: pointer;
}

#AboutModalClose:focus {
  outline: none;
  background-color: #FFFFFF44;
}
@keyframes fadeIn {
  0%{ 
    opacity: 0;
   }
  100% {
    opacity: 1;
  }
}
@keyframes modalUp {
  0%{ 
    transform: translateY(5vh);
   }
  100% {
    transform: translateY(0vh);
  }
}

#thanks {
  line-height: 1.9rem;
  font-size: 1.1rem;
}

.thanksBreak {
  width: 100%;
  margin: 1rem 0;
  display: flex;
}

.thanksBreak img {
  height: 3.25rem;
  margin: auto;
  position: relative;
}

#thanks p {
  padding: 0.5rem;
}
#thanks div {
  width: 100%;
  text-align: center;
}

#containAllOuter {
  width: 100%;
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
}
#containAll {
  padding: 2rem;
  max-width: 1000px;
}

@media only screen and (max-width: 700px) {
  #containAll {
    padding: 0.5rem;
  }

  #AboutModalContents h1 {
    font-size: 1.2rem;
  }

}

#siteBy {
  font-size: 1.1rem;
  padding: 5rem 0.5rem 3rem 0.5rem;
  text-align: center;
}

#addition {
  padding: 0 32px;
}
#addition a,
#siteBy a {
  text-decoration: underline;
  color: var(--linkColor);
}

#expandos {
  margin-bottom: 2.5rem;
}
/* STYLES FOR EXPANDING TEXT */
.expando {
  text-align: left;
  font-size: 1.35rem;
  line-height: 2rem;
  margin: 0.5rem;
}
.expandoLink, .expandoNewLink {
  color: var(--linkColor);
}

.expandoText, .expandoLink, .expandoClicked, .expandoNewLink  {
  padding-right: 0.12em;
  padding-left: 0.12em;
}
.expandoText:focus, 
.expandoLink:focus, 
.expandoClicked:focus,
.expandoNewLink:focus {
  outline: none;
}

.expandoLink:hover, .expandoNewLink:hover {
  cursor: pointer;
}

.expandoClicked {
  animation-name: clickedFade;
  animation-duration: 0.4s;
  animation-timing-function: ease-out;
  animation-delay: 0;
  animation-fill-mode: forwards;
}

.expandoNewLink {
  animation-name: clickedFadeIn;
  animation-duration: 0.1s;
  animation-timing-function: ease-in;
  animation-delay: 0;
  animation-fill-mode: forwards;
}

@keyframes clickedFade {
  0%   {color: var(--linkColor);}
  100% {color: var(--textColor);}
}

@keyframes clickedFadeIn {
  0% {color: var(--textColor);}
  100%   {color: var(--linkColor);}
}
