@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.mtp-nav {
  border: none !important;
  background-color: var(--baseTransparentMore);
}
.grama > .grama-body.mat-home > .grama-main {
  font-family: var(--basefontLight), sans-serif;
  text-align: center;
  height: 100%;
  width: 100% !important;
}
.grama > .grama-body.mat-home > .grama-main .mat-home--title_image,
.grama > .grama-body.mat-home > .grama-main .mat-home--subtitle {
  opacity: 0;
  animation: fadein ease-in 1;
  animation-fill-mode: forwards;
  animation-duration: 1s;
}
.grama > .grama-body.mat-home > .grama-main .mat-home--title_image {
  width: 30vw;
  padding-top: calc(50vh - 20vw);
  display: inline-block;
  animation-delay: 0.3s;
}
.grama > .grama-body.mat-home > .grama-main .mat-home--subtitle {
  font-size: 1.5em;
  margin: 1em;
  text-shadow: 1px 1px var(--baseContrast);
  animation-delay: 1s;
}
@media (any-pointer: none), (any-pointer: coarse), (max-width: 700px) {
  .grama-main .mat-home--title_image {
    width: 60vw;
    padding-top: calc(50vh - 40vw);
  }
}
