@font-face {
    font-family: 'MartianMono';
    src: url('/assets/fonts/MartianMono-SemiBold.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

html,
body {
    height: 100%;
    margin: 0;
    color: #ffffff;
    background-image: url("/assets/img/leaves.svg");
    background-size: cover;
    background-repeat: repeat;
    background-position: center center;
    font-family: 'MartianMono';
    font-size: 12pt;
    text-shadow:
        0 0 5px rgba(0, 0, 0, 0.5),
        0 0 10px rgba(0, 0, 0, 0.5),
        0 0 15px rgba(0, 0, 0, 0.5);
    -webkit-user-select: none;
    user-select: none
}


h1 {
    margin-bottom: 1rem;
    color: #ffffff;
    font-size: 32pt;
    line-height: 2;
}

p {
    margin-bottom: 0.5rem;
    line-height: 1;
}

.flex-container {
    height: 100%;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex-item {
    padding: 2.5rem;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1),
        0 0 40px 20px rgba(255, 255, 255, 0.3),
        0 0 40px 20px rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    height: auto;
    aspect-ratio: 2/1;
    box-sizing: border-box;
    color: #fff;
}


.flex-item::before {
    content: "";
    height: 8rem;
    width: 8rem;
    border-radius: 6rem;
    background-color: #ffffff;
    background-image: url("/assets/img/feisi.png");
    display: block;
    margin: 0 auto;
    margin-top: -4.5rem;
    background-size: cover;
    background-position: center;
}

.hl {
    color: #0f57f1;
}

.link a {
    text-decoration: none;
    color: #dee0e7;
    border-bottom: 2px dotted;
    font-weight: bold;
    margin-top: 0.2rem;
}

.link a:hover {
    color: #79766b;
}

.dot::before {
    content: " • ";
}