body {
    margin: 0;
    padding: 0;
    background-color: #f0d4e4;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    font-family: Arial, sans-serif;
}

.tv-container {
    width: 300px;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tv-frame {
    background-color: #ff6db6;
    border-radius: 20px;
    width: 100%;
    height: 100%;
    position: relative;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
    padding: 15px;
}

.tv-screen {
    background-color: #e6e6e6;
    border-radius: 15px;
    position: relative;
    width: 100%;
    height: 70%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: inset 0px 0px 10px rgba(0, 0, 0, 0.2);
}

.face {
    position: relative;
    width: 80%;
    height: 80%;
    background-color: #d3a87c;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.eyes {
    position: relative;
    width: 70%;
    height: 35%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.eye {
    width: 45%;
    height: 100%;
    background-color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.left-eye {
    position: absolute;
    left: 10%;
}

.right-eye {
    position: absolute;
    right: 10%;
}

.eye::before {
    content: '';
    width: 40%;
    height: 40%;
    background-color: #2c2c2c;
    border-radius: 50%;
}

.hair {
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 120%;
    height: 50%;
    background-color: #593d29;
    border-radius: 50% 50% 0 0;
    z-index: 2;
    box-shadow: inset 0px -10px 5px rgba(0, 0, 0, 0.3);
}

.tv-controls {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 60px;
    background-color: #ffffff;
    text-align: center;
  	font-weight: bold;
    font-size: 20px;
    border-radius: 10px;
    box-shadow: inset 0px -5px 10px rgba(0, 0, 0, 0.2);
    paint-order: stroke fill;
    text-shadow: 5px 5px 0 black, -5px;
    -webkit-text-stroke: #ff6db6 5px;
    letter-spacing: -0.1ch;
}
