h1 {
    font-family: "Bricolage Grotesque", "Cera Round", Arial, Helvetica, sans-serif;
    text-align: center;
    font-size: 30px;
    margin-bottom: 0;
    margin-top:0
}
h2 {
    font-family: "Bricolage Grotesque", "Cera Round", Arial, Helvetica, sans-serif;
    text-align: center;
    font-size: 17px;
    color:rgb(90,90,90);
    margin-top:0;
    font-weight: 400;
}
button.main {
    width: fit-content;
    border-radius: 11px;
    padding: 10px;
    border: rgba(0,0,0,0.2) 1px solid;
    color:black;
    background:none;
    font-family: "Familjen Grotesk", "Bricolage Grotesque", Arial, Helvetica, sans-serif;
    font-size: 16px;
    margin-top:5px;
    cursor: pointer;
    transition: 120ms background, 300ms filter, 300ms transform;
}
button.main i {
    margin-right: 3px;
}
button.main:hover {
    background:rgba(0,0,0,0.1);
}
button.main:active {
    transform: scale(.98);
}
.landing-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: calc(100dvh - 100px);
    width: 100%;
}

.loading-spinner {
    display: flex;
    align-items: center;
    font-family: "Familjen Grotesk", Arial, Helvetica, sans-serif;
    font-size: 16px;
}
body:has(.critical-error.show) .loading-spinner {
    display: none;
}
.loading-spinner span {
    transform: translateY(-1.5px);
}
.loading-spinner svg {
    height: 16px;
    margin-right: 5px;
}
.critical-error {
    background:rgb(255,200,200);
    border:rgba(0,0,0,0.2) 1px solid;
    border-radius: 9px;
    margin-bottom: 9px;
    font-family: "Inter", Arial, Helvetica, sans-serif;
    display: flex;
    display: none;
    flex-direction: column;
    padding: 7px;
    width: fit-content;
    color:rgb(100,0,0);
}
.critical-error span {
    font-size: 12px;
    font-weight:400;
}
.critical-error svg {
    margin-right: 2px;
    height: 15px;
    stroke:rgb(100,0,0);
}
.critical-error .header {
    font-size: 13px;
    font-weight: 600;
    display: flex;
    margin-bottom: 2px;
    align-items: end;
}
.critical-error.show {
    display: flex;
}