:root {
    --bg-color: #ffe8e0;
    --text-color: #111111;
    --border-color: black;
    --selector-bg-color: #ff9966;
}

body {
    color: var(--text-color);
    background-color: var(--bg-color);
}

a {
    color: var(--text-color);
}

a:visited {
    color: var(--text-color);
}

h1 {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

h2::before {
    content: "> ";
}

.box {
    background-color: var(--bg-color);
    border: 4px groove var(--border-color);
    border-radius: 4px;
    padding: 0 16px;
}

.columns {
    display: flex;
    flex-direction: row;
    gap: 16px;
    width: 100%;
}

.column {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.main-column {
    flex: 1;
}

.other-column {
    width: 250px;
}

@property --selectorColor {
    syntax: "<color>";
    initial-value: transparent;
    inherits: false;
}

.selector {
    width: full;
    transition:
        padding 0.25s,
        --selectorColor 0.15s;
    border-radius: 4px;
    background: linear-gradient(90deg, var(--selectorColor), transparent);
}

.selector:hover {
    padding: 4px 8px;
    --selectorColor: var(--selector-bg-color);
}

.selector-fw-link {
    display: inline-block;
    width: 100%;
}

.enter-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
    margin-bottom: 16px;
}

.enter-text {
    transition: transform 12000s;
}

.enter-text:hover {
    transform: rotate(144000000000000000deg);
}

.arrow-reverse {
    transform: scaleX(-1);
}

.link-list {
    list-style: none;
    margin: 0;
    padding: 0;
    padding-bottom: 16px;
}

.link-list > * {
    margin: 4px 0;
}

.service-link {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

.service-dot {
    border-radius: 100%;
    border: 1px solid var(--text-color);
    width: 8px;
    height: 8px;
    background-color: #0bda51;
}

.service-ok {
    color: #0bda51;
    font-weight: 800;
    font-size: 1rem;
    text-shadow:
        -0.5px -0.5px 0 var(--text-color),
        0.5px -0.5px 0 var(--text-color),
        -0.5px 0.5px 0 var(--text-color),
        0.5px 0.5px 0 var(--text-color);
    text-decoration: none;
}

.service-ok::before {
    color: var(--text-color);
    content: "[ ";
    text-shadow: none;
}

.service-ok::after {
    color: var(--text-color);
    content: " ]";
    text-shadow: none;
}

.project-title {
    margin: 0;
}

.project-description {
    margin: 4px 0;
    margin-bottom: 16px;
}

.photo-box {
    padding: 0;
}

.photo-box-photo {
    width: 100%;
}
