:root {
    line-height: 1;
    font-family: sans-serif;
    background-color: var(--background);
    color: var(--text-color);
    font-size: var(--text-size);
    /* 變數 */
    --primary-color: cornflowerblue;
    --primary-text-color: steelblue;
    --secondary-color: lightgreen;
    --secondary-text-color: green;
    --background: black;
    --text-color: white;
    --text-size: 22px;
    --normal-margin: 16px;
    --normal-radius: 12px;
    --normal-padding: 10px;
    --image-radius: 6px;
    --color-gray: rgb(56, 56, 56);
}

body {
    display: flex;
    flex-direction: column;
    min-height: 97dvh;
}

.content {
    background-color: var(--color-gray);
    margin: var(--normal-margin);
    padding: var(--normal-padding);
    border-radius: var(--normal-radius);
    font-size: var(--text-size);
    justify-self: center;
    max-width: 95dvw;
}

img {
    border-radius: var(--image-radius);
}

.profile {
    .profile-icon {
        width: 50px;
        height: 50px;
        border-radius: 12px;
        vertical-align: middle;
    }
    .profile-name {
        font-weight: 425;
        font-size: 28px;
        vertical-align: top;
    }
    .profile-id {
        font-size: 16px;
        color: gray;
    }
}

.mastodon {
    border-color: #6364ff;
}

.bluesky {
    border-color: rgb(15, 115, 255);
}

.social-link {
    border-radius: 16px;
    border-width: 3px;
    border-style: solid;
    padding: 5px;

    img,
    svg {
        width: 20px;
        height: 20px;
    }
    span,
    span:hover {
        font-size: 20px;
        color: var(--primary-color);
        text-decoration-thickness: 0px;
        text-decoration-line: none;
        text-decoration-color: transparent;
    }
}

/* 社群識別 */
.social-iden {
    size: 0px;
    font-size: 0px;
    color: transparent;
    visibility: hidden;
}

.intro {
    font-size: 18px;
}

footer {
    margin-top: auto;
    margin-bottom: 0px;
}

.footer-content {
    padding: 4px;
    background-color: rgb(45, 45, 45);
    font-size: 16px;
    a {
        color: var(--primary-color);
    }
    margin-bottom: 0px;
}
