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

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Work Sans', sans-serif;
}

body {
  min-height: 100vh;
  /* background-image: url('loading.svg'); */
  background-repeat: no-repeat;
  background-position: center;
}

header {
  text-align: center;
  position: absolute;
  width: 100vw;
  top: 2rem;
}

header img {
  width: 4rem;
}

.panel {
  background: grey;
  min-width: 100vw;
  min-height: 100vh;
  display: grid;
  place-content: center;
  border: 1rem solid white;
  font-size: 2rem;
  padding: 2rem;
  text-align: center;
}

.panel p {
  margin-bottom: 4rem;
  max-width: 40rem;
  line-height: 1.4;
}

.panel p strong {
  font-weight: normal;
}

.panel button {
  padding: 0.5rem 1rem;
  font-size: 1.5rem;
  max-width: 75%;
  border: none;
  margin: 0 auto;
  box-shadow: 2px 2px 0px black;
}

.panel button a {
  color: black;
  text-decoration: none;
}

.panel h1 {
  font-size: 10rem;
  color: white;
}

.panel .permission {
  background-color: black;
  color: white;
}

.panel .positive {
  background-color: steelblue;
}

.panel .negative {
  background-color: palevioletred;
}

.panel .error {
  background-color: orangered;
}

.hidden {
  display: none;
}
