:root {
    --background: #cae3ff;
    --text-primary: #000;
    --text-secondary: #115ee3;
    --palette-url: "./res/palette.png";
}

@media (prefers-color-scheme: dark) {
    :root {
        --background: #27273a;
        --text-primary: #fff;
        --text-secondary: #b8d9ff;
        --palette-url: "./res/palette_dark.png";
    }
}

body {
    font-family: "Red Hat Mono", monospace;
    font-size: 12px;
    background: var(--background);
    color: var(--text-primary);
    transform: scale(1.4, 1.4);

    display: flex;
    flex-direction: column;
    gap: 32px;
    justify-content: center;
    align-items: center;
    height: 100svh;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

i {
    font-style: normal;
    color: var(--text-secondary);
}

span {
    color: var(--text-primary);
}

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

.header_container {
    display: flex;
    flex-direction: row;
    height: 225px;
    gap: 32px;
}

.header_text {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

picture {
    height: 36px;
}

.palette {
    max-height: 100%;
}

.profile_photo {
    max-height: 100%;
}

.about {
    width: 500px;
}
