* {
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    box-sizing: border-box;
}

html, body{
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;

    background-color: hsl(from var(--main) h s calc(l * 1.5));
    color: hsl(from var(--main) h s calc(l * 10));
}

button {
    cursor: pointer;
}

.layout {
    width: 100%;
    height: 100%;

    display: flex;
    flex-direction: column;
}

.layout > .page_content {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;

    align-content: start;
    justify-content: start;
    margin: auto;

    overflow: auto;

    width: 100%;
    height: 100%;
    max-width: 60vw;
    min-width: 400px;
}

.layout > .page_content .error-box{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;

    margin: 2rem auto;
    width: fit-content;
    height: fit-content;

    padding: 1rem;
    border-radius: 0.5rem;
    color: hsl(from indianred h s calc(l * 1.5));
    border: 2px solid indianred;
    background-color: rgb(205 92 92 / 0.4);
}