@font-face {
    font-family: 'crayon';
    src: url('crayon.ttf');
}

.header {
    position: fixed;
    top: 0;
    background-color: #EDE7D8;
    height: 80px;
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.2);
}

.left-section {
    display: flex;
    align-items: center;
}

.middle-section {
    display: flex;
    align-items: center;
    justify-content: center;
}

.right-section {
    display: flex;
    align-items: center;
}

.greet {
    position: absolute;
    left: 10px;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #2E2C2F;
    /* CHANGED from black → charcoal */
}

.face {
    width: 68px;
    margin-top: 10px;
    height: auto;
    transform: rotate(-20deg);
    transition: transform 0.3s;
}

.face:hover {
    transform: rotate(0deg);
}

.face:active {
    transform: rotate(360deg);
    width: 50px;
}

.touch {
    position: absolute;
    right: 30px;
    padding: 10px 18px;
    border-radius: 6px;
    border: 1px dashed rgba(0, 0, 0, 0.3);
    background-color: #E7A977;
    color: #2E2C2F;
    font-family: 'Special Elite', monospace;
    font-size: 14px;
    transition: box-shadow 0.2s;
    transition: 0.2s;
}

.touch:hover {
    background-color: #2E2C2F;
    color: #FDF6E3;
    cursor: pointer;
}

.touch:active {
    background-color: #A3B18A;
    color: #2E2C2F;
    border: 1px solid rgba(0, 0, 0, 0.3);
}