* {
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

h1 {
  font-size: 28px;
  line-height: 30px;
  margin: 30px auto 18px auto;
}

a,
a:hover,
a:visited,
a:active {
  color: #ffffff;
  text-decoration: none;
}

body {
  display: grid;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #ef6a6a;
  margin: 25px auto;
}

.main {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: #ffffff;
  width: max-content;
  height: max-content;
  border-radius: 10px;
  padding: 25px;
}

.button {
  display: block;
  font-size: 14px;
  width: 100%;
  color: #ffffff;
  background-color: #4573d1;
  padding: 10px 18px 10px 18px;
  margin-bottom: 30px;
  border-radius: 10px;
}

#authorized-body {
  display: none;
}

ul {
  text-align: left;
}

footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: right;
  background-color: white;
  height: 38px;
  padding: 10px 25px;
}

#empty {
  display: none;
  height: calc(38px + 25px);
}
