*{
    position: relative;
    box-sizing: border-box;
    font-family: 'Poppins';
}
html, body{
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    background: rgb(var(--background-color));
}
body{
    color: rgb(var(--foreground-color));
}
#app{
    width: 100%;
    height: 100%;
}
.center{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: auto;
}
.error-card{
    background: rgb(var(--background-active-color));
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    max-width: 500px;
}
.error-card .title{
    opacity: .9;
}

.error-card .message{
    font-size: 16px;
    opacity: .6;
}