@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap");

:root {
  font-family: Noto Sans;
}
body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}
main {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.main-logo {
  width: 200px;
}
h1 {
}
.cards {
  max-width: 80vw;
}
.card {
  display: flex;
  flex-direction: column;
  flex: 1;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 0 0.4rem rgba(0, 0, 0, 0.4);
  border-radius: 0.4rem;
  padding: 0.4rem 2rem;
  transition: all 0.1s ease-in;
  margin: 1rem;
}
.card:hover {
  box-shadow: 0 4px 2.4rem rgba(0, 0, 0, 0.4);
  transform: translate3d(0, -4px, 0);
}
.card__title {
  display: flex;
  margin: 1rem 0;
}
.card__text {
  display: flex;
  margin: 0 0 1rem 0;
}
