* {
  box-sizing: border-box;
}

body {
  background-color: #70648c;
  margin: 0;
  height: 100vh;
  height: calc(100vh - env(safe-area-inset-bottom) - env(safe-area-inset-top));
  height: 100dvh;
  width: 100vw;
  width: 100dvw;
  display: grid;
  grid-template-rows: 1fr 8rem;
  font-family: "Manrope", sans-serif;
}

main {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card {
  max-height: 90%;
  max-width: 90%;
  position: absolute;
  border-radius: 6px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.25);
  cursor: pointer;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  row-gap: 1rem;
  height: 100%;
}

li {
  font-size: 1.25rem;
  font-weight: 500;
  max-width: 400px;
  width: 50%;
}

a {
  text-decoration: none;
  background-color: #f2f0f0;
  color: #5c5873;
  padding: 0.5rem;
  border-radius: 4px;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.4);
  display: inline-block;
  width: 100%;
}
