

/* @font-face {
  font-family: notoSans;
  src: url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap');
} */

/* I had to add other elements on top of * as for some reason h1 can overwrite * even if * is at the end of a script? */
*, img, h1, p, ul, li, a {
  font-family: 'Noto Sans';
  color: #4C4C4C;
  /* I really feel like margin/padding 0px should be part of any good base-reset but it doesn't appear to be standard */
  margin: 0px;
  padding: 0px;
}

.albert-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 150px 16px 0px 16px;

}

.alberts-face-img {
  width: 340px;
  height: 340px;
  margin-bottom: 40px;
}

.albert-has-moved-header {
  color: #4C4C4C;
  font-family: 'Noto Sans';
  font-size: 48px;
  line-height: 58px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 16px;
}

.albert-has-moved-description {
  color: #4C4C4C;
  font-family: 'Noto Sans';
  font-size: 24px;
  font-weight: 400;
  line-height: 28px;
  text-align: center;
  margin-bottom: 40px;
}

.albert-has-moved-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 320px;
  margin-bottom: 134px;
}

.albert-has-moved-list-item {
  display: flex;
  flex-direction: row;
  width: 100%;
  flex-grow: 1;
  flex-shrink: 0;
  background-color: #2D7D4C;
  margin-bottom: 16px;
  border-radius: 8px;
}

.albert-has-moved-list-item-link {
  display: block;
  width: 100%;
  flex-grow: 1;
  flex-shrink: 0;
  padding: 8px;
  color: #FFFFFF;
  font-family: 'Noto Sans';
  font-size: 18px;
  line-height: 24px;
  text-align: center;
  text-decoration: none;
}


@media (min-height: 0px) and (max-height: 750px) {
  .albert-body {
    padding-top: 40px;
  }
  .alberts-face-img {
    width: 280px;
    height: 280px;
  }
}
