#pomodoroApp {
    text-align: center;
    max-width: 400px;
    margin: 0 auto;
    font-family: Arial, sans-serif;
}

.timer-display {
    margin: 20px 0;
    font-size: 2em;
}

.controls button, .custom-time input {
    margin: 5px;
    padding: 10px;
    font-size: 1em;
}

.custom-time {
    margin-top: 10px;
	display: flex;
	flex-direction: column;
}

.chef-container {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.chef {
    position: relative;
    width: 100px;
    height: 100px;
    animation: headTurn 8s infinite;
}

.hat {
    position: absolute;
    top: 0;
    width: 100px;
    height: 40px;
    background: #fff;
    border-radius: 50% 50% 0 0;
    border: 2px solid #ccc;
}

.face {
    position: absolute;
    top: 40px;
    width: 100px;
    height: 60px;
    background: #ffe0bd;
    border-radius: 0 0 50% 50%;
    border: 2px solid #ccc;
}

.eye {
    width: 10px;
    height: 10px;
    background: black;
    border-radius: 50%;
    position: absolute;
    top: 20px;
    animation: blink 4s infinite;
}

.eye.left {
    left: 25px;
}

.eye.right {
    right: 25px;
}

@keyframes blink {
    0%, 90%, 100% { height: 10px; }
    95% { height: 2px; }
}

@keyframes headTurn {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(5deg); }
}
