* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

#face {
    height: 200px;
    width: 200px;
    border-radius: 50%;
    border: none;
    background-color: rgb(255, 169, 32);
}

.eyes {
    display: flex;
    gap: 75px;

    border: none;
    
    position: relative;
    top: 25%;
    left: 20%;
}

#left,
#right {
    height: 40px;
    width: 20px;
    border-radius: 50%;
    border: none;
    background-color: black;
}

#mouth {
    height: 30px;
    width: 100px;
    background-color: rgb(171, 53, 55);
    border-radius: 0 0 50px 50px;

    position: relative;
    top: 50%;
    left: 25%;
}
