* {
    box-sizing: border-box;
}

:root {
    color-scheme: light;
    --bg: #f4f5f8;
    --panel: #ffffff;
    --panel-2: #f1f3f7;
    --text: #17191f;
    --muted: #687184;
    --line: #d9dde5;
    --accent: #f2cf45;
    --accent-text: #171717;
}

html {
    min-height: 100%;
}

body {
    min-height: 100vh;
    margin: 0;
    background: #f5f6f8;
    color: var(--text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

button,
input {
    font: inherit;
}

button {
    cursor: pointer;
}

.page-shell {
    width: min(100% - 24px, 980px);
    margin: 0 auto;
    padding: 10px 0 24px;
}

.site-header {
    position: relative;
    min-height: 74px;
    margin-bottom: 14px;
    padding-top: 2px;
}

.site-header > div:first-child {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.site-header p {
    margin: 8px 0 0;
    color: var(--muted);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .055em;
    text-transform: uppercase;
    text-align: center;
}

.game-card {
    background: transparent;
}

.play-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    align-items: stretch;
}

.sprite-stage,
.control-stage {
    aspect-ratio: 1 / 1;
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    background: white;
}

.sprite-stage {
    display: grid;
    place-items: center;
    padding: 32px;
    border-radius: 20px 0 0 20px;
    background:
        linear-gradient(45deg, #e5e8ee 25%, transparent 25%, transparent 75%, #e5e8ee 75%),
        linear-gradient(45deg, #e5e8ee 25%, #f6f7f9 25%, #f6f7f9 75%, #e5e8ee 75%);
    background-position: 0 0, 10px 10px;
    background-size: 20px 20px;
}

.sprite-canvas {
    display: block;
    width: min(72%, 330px);
    height: auto;
    max-height: 78%;
    object-fit: contain;
    image-rendering: pixelated;
    image-rendering: crisp-edges;
    filter: drop-shadow(0 10px 8px rgba(0, 0, 0, .12));
}

.control-stage {
    display: grid;
    padding: 20px 22px 18px;
    border-left: 4px solid #17191f;
    border-radius: 0 20px 20px 0;
}

.guess-panel,
.result-panel {
    min-width: 0;
    align-self: stretch;
}

.guess-panel {
    display: flex;
    min-height: 100%;
    flex-direction: column;
}

.instruction {
    margin: 0 0 12px;
    color: var(--muted);
    font-size: .8rem;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.picker-main {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 44px;
    gap: 14px;
    align-items: stretch;
    justify-content: center;
    min-height: 0;
    height: 280px;
}

.wheel-wrap {
    position: relative;
    width: min(100%, 280px);
    aspect-ratio: 1 / 1;
    justify-self: center;
    align-self: start;
    touch-action: none;
}

.colour-wheel {
    display: block;
    width: 100%;
    height: 100%;
    cursor: crosshair;
    touch-action: none;
}

.wheel-cursor {
    position: absolute;
    width: 16px;
    height: 16px;
    border: 2px solid #17191f;
    border-radius: 50%;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, .9);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.picker-swatch {
    height: min(100%, 280px);
    min-height: 0;
    align-self: start;
    border: 1px solid rgba(0, 0, 0, .12);
    border-radius: 6px;
    background: #808080;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .28);
}

.brightness-control {
    margin-top: 10px;
}

.brightness-slider {
    --brightness-colour: #ffffff;
    width: 100%;
    height: 18px;
    margin: 0;
    appearance: none;
    -webkit-appearance: none;
    background: transparent;
    cursor: pointer;
}

.brightness-slider::-webkit-slider-runnable-track {
    height: 12px;
    border: 1px solid #cfd4dc;
    border-radius: 999px;
    background: linear-gradient(90deg, #000000, var(--brightness-colour));
}

.brightness-slider::-moz-range-track {
    height: 12px;
    border: 1px solid #cfd4dc;
    border-radius: 999px;
    background: linear-gradient(90deg, #000000, var(--brightness-colour));
}

.brightness-slider::-webkit-slider-thumb {
    width: 18px;
    height: 18px;
    margin-top: -4px;
    appearance: none;
    -webkit-appearance: none;
    border: 3px solid white;
    border-radius: 50%;
    background: #17191f;
    box-shadow: 0 0 0 1px #8d95a3;
}

.brightness-slider::-moz-range-thumb {
    width: 14px;
    height: 14px;
    border: 3px solid white;
    border-radius: 50%;
    background: #17191f;
    box-shadow: 0 0 0 1px #8d95a3;
}

.picker-footer {
    margin-top: auto;
    padding-top: 10px;
}

.primary-button {
    width: 100%;
    min-height: 48px;
    border: 0;
    border-radius: 8px;
    padding: 11px 18px;
    background: var(--accent);
    color: var(--accent-text);
    font-weight: 900;
    letter-spacing: .02em;
}

.primary-button:hover {
    filter: brightness(1.03);
}

.primary-button:focus-visible,
.brightness-slider:focus-visible,
.colour-wheel:focus-visible {
    outline: 3px solid #17191f;
    outline-offset: 3px;
}

.result-panel {
    display: flex;
    min-height: 100%;
    flex-direction: column;
    justify-content: center;
}

.result-label {
    margin: 0 0 8px;
    color: var(--muted);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.score {
    font-size: clamp(4rem, 10vw, 6rem);
    font-weight: 950;
    line-height: .95;
    letter-spacing: -.055em;
}

.score::after {
    content: "/1000";
    margin-left: 8px;
    color: var(--muted);
    font-size: .22em;
    letter-spacing: normal;
}

.score-message {
    margin: 9px 0 20px;
    color: var(--muted);
    font-weight: 750;
}

.result-comparison-card {
    width: min(100%, 170px);
    margin: 0 auto 14px;
    padding: 6px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--panel-2);
}

.comparison-blend {
    --user-colour: #ffffff;
    --actual-colour: #ffffff;
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, .12);
    border-radius: 7px;
    background: linear-gradient(135deg,
        var(--user-colour) 0%,
        var(--user-colour) 50%,
        var(--actual-colour) 50%,
        var(--actual-colour) 100%);
}

.blend-label {
    position: absolute;
    color: var(--muted);
    font-size: .58rem;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: .01em;
    text-shadow: 0 1px 0 rgba(255, 255, 255, .55);
}

.blend-label-user {
    top: 8px;
    left: 8px;
}

.blend-label-actual {
    right: 8px;
    bottom: 8px;
    text-align: right;
}

.testing-reset-button {
    display: block;
    width: max-content;
    min-height: 34px;
    margin: 12px auto 0;
    padding: 5px 12px;
    border: 1px dashed #b8bec9;
    border-radius: 8px;
    background: transparent;
    color: var(--muted);
    font-size: .76rem;
    font-weight: 800;
}

.testing-reset-button:hover {
    border-color: #8f97a6;
    color: var(--text);
}

.testing-reset-button span {
    font-size: .78em;
    font-weight: 700;
}

.share-status {
    min-height: 1.2em;
    margin: 8px 0 0;
    color: var(--muted);
    text-align: center;
    font-size: .78rem;
    font-weight: 700;
}

.site-footer {
    padding: 14px 4px 0;
    color: var(--muted);
    text-align: center;
    font-size: .78rem;
}

.site-footer-tagline {
    font-size: .78rem;
}

.site-footer-account-prompt {
    margin-top: 7px;
    font-size: .9rem;
    font-weight: 700;
    line-height: 1.35;
}

.site-footer-previous-link {
    display: inline-block;
    margin-top: 9px;
    padding: 7px 12px;
    border-radius: 8px;
    color: var(--text);
    font-size: 1rem;
    font-weight: 850;
    text-decoration: none;
}

.site-footer-previous-link:hover {
    background: #eceff3;
}

.empty-puzzle {
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: white;
}

.empty-puzzle h2 {
    margin-top: 0;
}

.empty-puzzle p {
    margin-bottom: 0;
    color: var(--muted);
}

[hidden] {
    display: none !important;
}

/* Accounts, archive and saved-score UI */
.spritle-wordmark-link {
    display: inline-block;
    line-height: 0;
    text-decoration: none;
}

.spritle-logo {
    display: block;
    width: 132px;
    height: 50px;
    image-rendering: pixelated;
    image-rendering: crisp-edges;
}

.site-actions {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
}

.site-actions a {
    padding: 7px 9px;
    border-radius: 7px;
    color: var(--muted);
    font-size: .76rem;
    font-weight: 850;
    text-decoration: none;
}

.site-actions a:hover {
    background: #eceff3;
    color: var(--text);
}

.site-actions .signup-link {
    background: var(--text);
    color: white;
}

.site-actions .signup-link:hover {
    background: #30333a;
    color: white;
}

.primary-button:disabled {
    cursor: wait;
    opacity: .7;
}

.guess-status {
    min-height: 1.15em;
    margin: 7px 0 0;
    color: #a52b41;
    text-align: center;
    font-size: .75rem;
    font-weight: 750;
}

.access-card,
.account-home-card,
.auth-card,
.archive-summary {
    border: 1px solid var(--line);
    border-radius: 16px;
    background: white;
}

.access-card {
    max-width: 620px;
    margin: 40px auto 0;
    padding: 30px;
    text-align: center;
}

.access-card h2 {
    margin: 4px 0 10px;
    font-size: 1.8rem;
}

.access-card p:not(.result-label) {
    margin: 0 auto 22px;
    max-width: 460px;
    color: var(--muted);
    line-height: 1.55;
}

.link-button,
.secondary-link-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.secondary-link-button {
    min-height: 44px;
    padding: 10px 15px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: white;
    color: var(--text);
    font-weight: 850;
}

.past-puzzle-nav {
    margin-top: 12px;
    text-align: center;
}

.past-puzzle-nav a {
    color: var(--muted);
    font-size: .8rem;
    font-weight: 800;
    text-decoration: none;
}

.account-page-shell,
.archive-page-shell {
    width: min(100% - 24px, 980px);
}

.simple-header {
    grid-template-columns: 1fr;
}

.auth-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 28px;
}

.auth-card {
    padding: 26px;
}

.auth-card h1,
.account-home-card h1 {
    margin: 0 0 18px;
    font-size: 2rem;
}

.auth-card form {
    display: grid;
    gap: 7px;
}

.auth-card label {
    margin-top: 8px;
    color: var(--muted);
    font-size: .72rem;
    font-weight: 850;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.auth-card input[type="text"],
.auth-card input[type="password"] {
    width: 100%;
    min-height: 46px;
    padding: 9px 11px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fbfbfc;
    color: var(--text);
}

.auth-card input:focus {
    outline: 3px solid rgba(23, 25, 31, .16);
    border-color: #9ea5b1;
}

.auth-card .primary-button {
    margin-top: 12px;
}

.account-message {
    max-width: 620px;
    margin: 18px auto 0;
    padding: 12px 14px;
    border-radius: 9px;
    font-size: .82rem;
    font-weight: 750;
}

.account-error {
    border: 1px solid #e6b6bf;
    background: #fff1f3;
    color: #8f1f34;
}

.account-home-card {
    max-width: 590px;
    margin: 40px auto 0;
    padding: 30px;
}

.account-home-card > p:not(.result-label) {
    color: var(--muted);
    line-height: 1.55;
}

.account-home-actions {
    display: grid;
    gap: 9px;
    margin-top: 22px;
}

.archive-header {
    margin-bottom: 18px;
}

.archive-summary {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    overflow: hidden;
    margin-bottom: 14px;
}

.archive-summary > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 15px 18px;
}

.archive-summary > div + div {
    border-left: 1px solid var(--line);
}

.archive-summary span {
    color: var(--muted);
    font-size: .74rem;
    font-weight: 850;
    letter-spacing: .03em;
    text-transform: uppercase;
}

.archive-summary strong {
    font-size: 1.25rem;
}

.completed-stat {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.completion-crown {
    font-size: .9em;
    line-height: 1;
}

.archive-months {
    display: grid;
    gap: 22px;
}

.archive-month {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: white;
}

.archive-month-header {
    padding: 16px 18px 14px;
    border-bottom: 1px solid var(--line);
}

.archive-month-header h2 {
    margin: 0;
    font-size: 1.15rem;
    letter-spacing: -.02em;
}

.archive-calendar-weekdays,
.archive-calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
}

.archive-calendar-weekdays {
    border-bottom: 1px solid var(--line);
    background: var(--panel-2);
}

.archive-calendar-weekdays span {
    padding: 9px 5px;
    color: var(--muted);
    text-align: center;
    font-size: .66rem;
    font-weight: 850;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.archive-calendar-grid {
    gap: 1px;
    background: var(--line);
}

.archive-calendar-day {
    position: relative;
    min-width: 0;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: white;
    color: var(--text);
    text-decoration: none;
}

.archive-calendar-day.outside-month,
.archive-calendar-day.is-future {
    background: #f5f6f8;
}

.archive-calendar-day.is-future {
    color: transparent;
    pointer-events: none;
}

.archive-calendar-day.no-puzzle {
    padding: 8px;
    background: #fbfbfc;
}

.archive-calendar-day.has-puzzle {
    display: grid;
    grid-template-rows: auto 1fr auto;
    transition: background .12s ease, box-shadow .12s ease;
}

.archive-calendar-day.has-puzzle:hover {
    z-index: 1;
    box-shadow: inset 0 0 0 2px rgba(23, 25, 31, .28);
}

.archive-calendar-day.is-today {
    z-index: 2;
    box-shadow: inset 0 0 0 3px var(--accent);
}

.archive-calendar-meta,
.archive-calendar-footer {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5px;
}

.archive-calendar-meta {
    padding: 7px 8px 4px;
}

.archive-calendar-footer {
    min-height: 25px;
    padding: 3px 8px 7px;
}

.archive-day-number {
    font-size: .76rem;
    font-weight: 900;
}

.archive-puzzle-number {
    color: var(--muted);
    font-size: .62rem;
    font-weight: 850;
}

.archive-calendar-sprite {
    display: grid;
    min-height: 0;
    place-items: center;
    margin: 0 5px;
    background:
        linear-gradient(45deg, #e5e8ee 25%, transparent 25%, transparent 75%, #e5e8ee 75%),
        linear-gradient(45deg, #e5e8ee 25%, #f6f7f9 25%, #f6f7f9 75%, #e5e8ee 75%);
    background-position: 0 0, 5px 5px;
    background-size: 10px 10px;
}

.archive-calendar-sprite img {
    width: 68%;
    height: 68%;
    object-fit: contain;
    image-rendering: pixelated;
    image-rendering: crisp-edges;
}

.archive-calendar-sprite img.is-silhouette {
    filter: brightness(0);
}

.archive-calendar-footer b {
    color: #366f4a;
    font-size: .65rem;
    white-space: nowrap;
}

.archive-calendar-footer b.unplayed {
    color: var(--muted);
}

.archive-today-badge {
    padding: 2px 5px;
    border-radius: 999px;
    background: var(--accent);
    color: var(--accent-text);
    font-size: .55rem;
    font-weight: 900;
    text-transform: uppercase;
}

@media (max-width: 780px) {
    .page-shell {
        width: min(100% - 20px, 560px);
        padding-top: 10px;
    }

    .site-header {
        min-height: auto;
        margin-bottom: 20px;
        padding-top: 0;
    }

    .site-header > div:first-child {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .spritle-logo {
        width: 132px;
        height: 50px;
    }

    .site-header p {
        margin-top: 7px;
        text-align: center;
    }

    .site-actions {
        position: static;
        justify-content: center;
        flex-wrap: wrap;
        margin-top: 11px;
        gap: 4px;
    }

    .site-actions a {
        padding: 6px 8px;
        font-size: .7rem;
    }

    .play-grid {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .sprite-stage {
        width: min(72vw, 280px);
        aspect-ratio: 1 / 1;
        align-self: center;
        padding: 28px;
        border-radius: 18px;
    }

    .sprite-canvas {
        width: min(78%, 210px);
        max-height: 78%;
    }

    .control-stage {
        width: 100%;
        aspect-ratio: auto;
        min-height: 0;
        padding: 18px 18px 16px;
        border: 1px solid var(--line);
        border-top: 4px solid #17191f;
        border-radius: 18px;
    }

    .guess-panel,
    .result-panel {
        min-height: 0;
    }

    .guess-panel {
        display: block;
    }

    .instruction {
        margin: 0 0 14px;
        text-align: center;
        font-size: .75rem;
    }

    .picker-main {
        width: min(100%, 320px);
        height: auto;
        grid-template-columns: minmax(0, 1fr) 36px;
        gap: 12px;
        margin: 0 auto;
        align-items: stretch;
    }

    .wheel-wrap {
        width: min(100%, 250px);
        justify-self: center;
    }

    .picker-swatch {
        width: 36px;
        height: auto;
        min-height: 0;
        align-self: stretch;
    }

    .brightness-control,
    .picker-footer {
        width: min(100%, 320px);
        margin-left: auto;
        margin-right: auto;
    }

    .brightness-control {
        margin-top: 12px;
    }

    .picker-footer {
        margin-top: 11px;
        padding-top: 0;
    }

    .primary-button {
        min-height: 50px;
    }

    .result-panel {
        padding: 4px 0 0;
    }

    .score {
        text-align: center;
        font-size: clamp(3.6rem, 20vw, 5.2rem);
    }

    .score-message,
    .result-label {
        text-align: center;
    }

    .result-comparison-card {
        width: min(100%, 160px);
    }

    .site-footer {
        padding-top: 16px;
    }

    .simple-header {
        display: block;
    }

    .auth-grid {
        grid-template-columns: 1fr;
    }

    .archive-months {
        gap: 16px;
    }

    .archive-month-header {
        padding: 13px 14px 11px;
    }

    .archive-calendar-weekdays span {
        padding: 7px 2px;
        font-size: .56rem;
    }

    .archive-calendar-meta {
        padding: 5px 5px 2px;
    }

    .archive-calendar-footer {
        min-height: 20px;
        padding: 2px 5px 5px;
    }

    .archive-day-number {
        font-size: .66rem;
    }

    .archive-puzzle-number {
        font-size: .52rem;
    }

    .archive-calendar-footer b {
        font-size: .55rem;
    }

    .archive-today-badge {
        padding: 1px 4px;
        font-size: .48rem;
    }
}

@media (max-width: 440px) {
    .page-shell {
        width: min(100% - 16px, 420px);
    }

    .sprite-stage {
        width: min(74vw, 250px);
        padding: 24px;
    }

    .control-stage {
        padding: 16px 14px 14px;
    }

    .picker-main {
        width: min(100%, 285px);
        grid-template-columns: minmax(0, 1fr) 32px;
        gap: 10px;
    }

    .wheel-wrap {
        width: min(100%, 230px);
    }

    .picker-swatch {
        width: 32px;
    }

    .brightness-control,
    .picker-footer {
        width: min(100%, 285px);
    }

    .wheel-cursor {
        width: 14px;
        height: 14px;
    }

    .testing-reset-button {
        margin-top: 10px;
    }

    .archive-summary {
        grid-template-columns: 1fr;
    }

    .archive-summary > div + div {
        border-left: 0;
        border-top: 1px solid var(--line);
    }
}



/* Leaderboards */
.leaderboard-page-shell {
    width: min(100% - 24px, 1180px);
}

.leaderboard-header {
    margin-bottom: 18px;
}

.leaderboard-intro {
    margin: 0 0 18px;
    text-align: center;
}

.leaderboard-intro h1 {
    margin: 0 0 5px;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
}

.leaderboard-intro p {
    margin: 0;
    color: var(--muted);
    font-size: .88rem;
}

.leaderboard-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    align-items: start;
}

.leaderboard-board {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #ffffff;
}

.leaderboard-board > header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 15px 12px;
    border-bottom: 1px solid var(--line);
    background: var(--panel-2);
}

.leaderboard-board > header span {
    display: block;
    margin-bottom: 2px;
    color: var(--muted);
    font-size: .62rem;
    font-weight: 850;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.leaderboard-board > header h2 {
    margin: 0;
    font-size: 1rem;
}

.leaderboard-board > header b {
    color: var(--muted);
    font-size: .75rem;
}

.leaderboard-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.leaderboard-list li {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr) auto;
    align-items: center;
    gap: 9px;
    min-height: 51px;
    padding: 8px 13px;
    border-bottom: 1px solid #edf0f4;
}

.leaderboard-list li:last-child {
    border-bottom: 0;
}

.leaderboard-list li.is-you {
    background: #fff9dc;
}

.leaderboard-rank {
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: var(--panel-2);
    color: var(--muted);
    font-size: .72rem;
    font-weight: 900;
}

.leaderboard-list li:nth-child(1) .leaderboard-rank {
    background: #f2cf45;
    color: #17191f;
}

.leaderboard-list li:nth-child(2) .leaderboard-rank,
.leaderboard-list li:nth-child(3) .leaderboard-rank {
    background: #e6e9ef;
    color: #343944;
}

.leaderboard-player {
    min-width: 0;
    overflow: hidden;
    font-size: .8rem;
    font-weight: 850;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.leaderboard-player small {
    display: block;
    margin-top: 2px;
    color: var(--muted);
    font-size: .58rem;
    font-weight: 750;
}

.leaderboard-list strong {
    font-size: .82rem;
    white-space: nowrap;
}

.leaderboard-empty {
    margin: 0;
    padding: 26px 15px;
    color: var(--muted);
    text-align: center;
    font-size: .78rem;
    font-weight: 750;
}

@media (max-width: 860px) {
    .leaderboard-grid {
        grid-template-columns: 1fr;
    }

    .leaderboard-board {
        max-width: 620px;
        width: 100%;
        margin: 0 auto;
    }
}
