:root {
    --background-color-light: #ffffff;
    --text-color-light: #000000;
    --err-color: #ff3f31;
    --link-text-color: #2997ff;
    --link-background-color: #0071e3;
    --done-color: #26ca8b;

    --green: #49c057;
    --green-200: #d5f0da;
    --green-glass: rgba(73, 192, 87, 0.18);
    --footer-text-color: rgba(0, 0, 0, 0.36);
    --footer-height: 64px;
}

@font-face {
    font-family: "SF Pro Display";
    src: url(../assets/fonts/SFProDisplay.ttf) format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "SF Pro Display";
    src: url(../assets/fonts/SFProDisplay-Medium.ttf) format("truetype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "SF Pro Display";
    src: url(../assets/fonts/SFProDisplay-Semibold.ttf) format("truetype");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "SF Pro Display";
    src: url(../assets/fonts/SFProDisplay-Bold.ttf) format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

html,
body {
    position: relative;
    width: 100vw;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    transition: 0.8s;
}

body {
    color: var(--text-color-light);
    overflow-x: hidden;
    z-index: -25;
    font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: #f2f5f7;
}

body.is-modal-open {
    overflow: hidden;
}

.content {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 72px;
    pointer-events: none;
    z-index: 2;
}
