/* Header */
header {
    width: 100%;
    overflow: hidden;
    min-height: 100px;
}

header > div {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 20px;
}

header > div h1,
header > div h2 {
    font-size: var(--heading-size);
    font-family: var(--pixel-font);
    margin: 0;
    padding: 0;
    width: fit-content;
    padding: 25px;
    position: relative;
}

header .mobile {
    display: none;
    gap: 0;
    flex-direction: column;
}

header .mobile h1,
header .mobile h2 {
    text-align: center;
    margin: 0 auto;
}

header > div h1::after,
header > div h2::after {
    content: attr(data-text);
    position: absolute;
    bottom: 0;
    right: 0;
    left: 24px;
    transform: scaleY(-1);
    opacity: 0.3;
    color: #4a90e2; /* Darker blue for reflection */
    font-size: inherit;
    font-family: inherit;
    line-height: 1;
    white-space: nowrap;
    /* bottom: 10px; */
}
