body {
	background-color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #0a0a0a;
    margin: 0;
}

.head {
    width: 200px;
    height: 200px;
    background-color: #555; /* Dark grey */
    border-radius: 50%; /* Human head shape */
    position: relative;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.eye {
    position: absolute;
    width: 40px;
    height: 40px;
    background-color: red; /* Heart color */
    top: 50px;
    /* The heart shape is created using CSS pseudo-elements */
}

.eye::before,
.eye::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: red;
    border-radius: 50%;
}

.eye::before {
    left: -50%;
    top: 0;
}

.eye::after {
    top: -50%;
    right: 0;
}

.left-eye {
    left: 40px;
    transform: rotate(45deg);
}

.right-eye {
    right: 40px;
    transform: rotate(45deg);
}

.mouth {
    position: absolute;
    width: 80px;
    height: 20px;
    top: 130px;
    left: 50%;
    transform: translateX(-50%);
    /* The 'X' is created using two overlapping bars */
}

.mouth::before,
.mouth::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 10px; /* Thickness of the 'X' bars */
    background-color: red; /* 'X' color */
    border-radius: 5px;
}

.mouth::before {
    transform: rotate(45deg);
    top: 5px; /* Center the 'X' vertically within its container */
}

.mouth::after {
    transform: rotate(-45deg);
    top: 5px;
}

