@import url(./typo.css);

@font-face {
    font-family: "UD Clarimo PE";
    font-weight: 400;
    src: url(./assets/CLARIMOUDPE-REGULAR-FGNQQ6AA-FGNQQ6AA.TTF)
}

@font-face {
    font-family: "UD Clarimo PE";
    font-weight: 500;
    src: url(./assets/CLARIMOUDPE-MEDIUM-WODVAZYS-WODVAZYS.TTF)
}

@font-face {
    font-family: "Reimin";
    font-weight: 500;
    src: url(./assets/A-OTF-UDReiminPr6N-Bold-I54ASDTM.otf);
}

@font-face {
    font-family: "Reimin";
    font-weight: 400;
    src: url(./assets/A-OTF-UDReiminPr6N-Regular-IPV3M3OF-IPV3M3OF.otf);
}

.display-text {
    font-family: "UD Clarimo PE";
}

p {
    line-height: 1.5;
}

* {
    font-family: "Reimin";
}

.medium {
    font-weight: 500;
}

header {
    display: flex;
    padding: 10px 0px;
    padding-bottom: 8px;
    max-width: calc(100vw + 32px);
    overflow: hidden;

    p {
        margin: 0;
        max-width: 100%;
    }
}

a {
    text-decoration: none;
    color: unset;
}

.squiggle {
    text-decoration: underline;
}

.primary {
    color: #00639c;
}

.secondary-to-primary {
    color: #496179;

    &&:hover {
        color: #00639c;
    }
}

a {
    font-weight: 500;
}

.header-no-space {
    padding-top: 0px;

    p {
        margin: 0;
    }
}

section {
    align-items: center;
    display: flex;
    gap: 8px;

    &&:first-child {
        justify-content: start;
    }

    &&:last-child {
        justify-content: end;
    }
}

.logo {
    height: 24px;
}

.card-image {
    width: 100%;
    border-radius: inherit;
    outline: inherit;
    outline-color: #000000;
}

.card {
    border-radius: 8px;
    transition: all 500ms ease-in-out;
    outline: 0px solid transparent;
    box-sizing: content-box;
}

.card:hover {
    padding: 8px;
    border-radius: 16px;
    outline: 4px solid transparent;
    text-decoration: underline;
}

.card-title {
    margin: 0;
    width: 100%;
}

.blank-card {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    gap: 8px;

    img {
        width: 100%;
        border-radius: 8px;
    }
}

.background-image {
    top: 0;
    left: 0;
    z-index: -1;
    filter: blur(16px);
    opacity: .4;
    object-fit: cover;
    width: 100%;
    height: 100%;
    position: fixed;
    inset: 0px;
}

html {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    height: 100%;
    margin: 0;
    min-height: 0;
    overflow: auto;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
}

body {
    overflow: auto;
}

.content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: calc(50%);
    padding-top: 16px;
    padding-bottom: 16px;

    * {
        flex-shrink: 0;
    }
}

.nm {
    margin: 0;
    padding-top: 8px;
    padding-bottom: 8px;
}

@media screen and (max-width: 599px) {
    .content {
        max-width: calc(100% - 32px);
    }
}

.nlh {
    line-height: 0.5;
}

.split {
    display: flex;
    width: 100%;
    gap: 12px;
    margin-top: 8px;
}

.pointer {
    cursor: pointer;
}

.banner {
    background-color: #000000;
    color: #FFFFFF;
    padding: 8px 16px;
    margin: 0;
    border-radius: 8px;
    margin-bottom: 8px;

    p {
        margin: 0;
    }
}

.split-pane {
    flex: 1 1 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 16px;

    p {
        margin: 0;
    }

    .pane-title {
        margin: .5;
    }
}

hr {
    margin-top: 16px;
    margin: 0;
    border-style: solid;
    border-color: #D3D3D3;
}