error-view
{
   display: flex;
   flex-direction: column;
   justify-content: center;
   width: calc(100% - 40px);
   margin: 0 auto;
}
error-view .title
{
   text-transform: uppercase;
   font-size: xx-large;
   margin-bottom: 10px;
   text-align: center;
}
error-view .message
{
   font-size: medium;
   margin-bottom: 10px;
}
error-view .buttons
{
   display: flex;
   justify-content: space-evenly;
   align-items: center;
}
error-view button
{
   font-size: large;
   background-color: var(--kl-bg-secondary-color);
   border: unset;
   outline: unset;
   color: var(--kl-fg-primary-color);
   padding: 20px;
   border-radius: var(--kl-border-radius);
}