@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@300&display=swap');

html,
body {
  padding: 0;
  margin: 0;
  border: 1rem;
  font-family: 'IBM Plex Sans', 'Helvetica Neue', Arial, sans-serif;
  background-color: rgb(219, 236, 250);
}

* {
  box-sizing: border-box;
}

a {
  font-family: 'IBM Plex Sans', 'Helvetica Neue', Arial, sans-serif;
  font-size: 1em;
  font-weight: 300;
  text-decoration: none;
  color: black;
  display: block;
  margin: 0.25em 0;
}

a:hover {
  font-weight: 300;
  background-color: rgb(219, 236, 250);
  box-shadow: inset 0 -2px rgb(63, 88, 165);
}

a:visited {
  text-decoration: none;
  font-weight: 300;
  color: black;
}

.container {
  position: fixed;
  top: 25%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(300px, 85%);
  height: min(200px, 50%);
}

.card {
  background-color: white;
  border-style: solid;
  border-color: rgb(63, 88, 165);
  border-radius: 7px;
  border-width: 1px 1px 5px 5px;
  width: 300px;
  height: 400px;
}

.frame {
  display: flex;
  flex-flow: column wrap;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

header {
  font-size: 1.5em;
  font-weight: 400;
  margin: 0 0 1em;
  letter-spacing: 0.03em;
}

p {
  font-size: 0.95em;
  font-weight: 300;
  margin: 0 0 0.75em;
  color: rgb(60, 60, 60);
}
