@charset "UTF-8";

.index-home {
  text-align: center;
  display: grid;
  grid-template-rows: 1fr auto;
  align-items: center;
}

.index-padding {
  margin-top: 2em;
}

.index-group {
  height: 100%;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: space-around;
}

.index-tutorial {
  padding: 2em 1em;
}

.index-tutorial span {
  line-height: 1.5em;
}

.index-tutorial a {
  margin-top: 1em;
  background-image: none;
  border: 1px solid black;
}

.index-home h3 {
  font-weight: 600;
  font-size: 32px;
  color: var(--primaryColor2);
}

.index-home span.subheader {
  font-size: 24px;
  color: var(--grey1);
}

.index-home h4 {
  font-weight: 600;
  color: var(--primaryColor4);
}

.index-tile {
  transform: scale(0.8);
  margin: -1.8em;
  margin-bottom: 1em;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.5em;
}

.inner-index-tile {
  padding-left: 5px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-around;
}

.index-tile .btn{
  /* button on bottom of box */
  margin-top: auto;
}


.index-tile img {
  align-self: center;
  height: 60px;
  width: 60px;
  padding-top: 15px;
  padding-left: 15px;
}

.index-tile a {
  color: var(--white);
  background-image: none;
  border: none;

  width: 100%;
}

.index-tile-color-1 a {
  background-color: var(--primaryColor1);
}

.index-tile-color-2 a {
  background-color: var(--primaryColor2);
}

.index-tile-color-3 a {
  background-color: var(--primaryColor3);
}

.index-tile-color-4 a {
  background-color: var(--primaryColor4);
}

.index-tile-color-5 a {
  background-color: var(--primaryColor5);
}

.index-tile-colored {
  background-color: white;
  border: 2px groove var(--primaryColor1);
  border-radius: 5px;
}

.index-tile-bordered a {
  border: 1px solid var(--primaryColor4);
  color: var(--primaryColor4);
}

.index-about-container-background {
  background-color: var(--secondaryColor1);
  width: 100%;
}

.index-about-container {
  padding: 2em 1em;
  width: 100%;

  display: grid;

  grid-template-columns: repeat(3, 1fr);
  grid-gap: 48px;
  max-width: 800px;
  margin: auto;

  font-size: 14px;

  color: var(--primaryColor3);
}

.index-about-column img {
  height: 32px;
}

.index-about-column {
  transform: scale(0.8);
  display: flex;
  flex-direction: column;
  min-height: 150px;



}

.index-about-column .btn{
  /* button on bottom of box */
  margin-top: auto;
}



.index-about-column a {
  color: var(--white);
  background-color: var(--primaryColor3);
  background-image: none;
  border: none;

  padding: 4px 12px;
}

.index-tile-container {
  display: grid;
  grid-template-columns: repeat(5, auto);
  grid-gap: 2em;
  padding: 2em 0;

  justify-items: center;
}

/*
.index-tile .hovertext {
    visibility: hidden;
    width: auto;
    height: auto;
    background-color: var(--secondaryColor1);
    color: var(--primaryColor2);
    justify-content: center;
    align-items: center;
    position: absolute;
    z-index: 1;
  }

  .index-tile:hover .hovertext {
    visibility: visible;
  } */

@media screen and (max-width: 800px) {
  .index-tile-container {
    grid-template-columns: repeat(2, auto);
    grid-template-rows: repeat(2, auto);
  }
}
