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

html {
    width: 100%;
    height: 100%;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    line-height: 1.25;
    -webkit-text-size-adjust: 100%; /* Prevents Safari from auto-resizing text. */
    background-color: aliceblue;
    color: grey;
}

#kitchen {
    width:60%;
    margin: 5em auto 0 auto;
    height: 40vh;
    border: 1px solid black;

    text-align: center;
}

#stove {
    position: relative;
    width: 10%;
    top: 40%;
    left: 50px;

    border: 1px solid black;
}

/* #darkness {
    background-color: black;
    width: 100%;
    height: 100vh;
} */

#light-switch {

}

#chopping-board img {
    position: absolute;
    top: 100px;
    width: 200px;
    height: 150px;
}

#knife img {
    position: absolute;
    top: 150px;
    width: 200px;
    height: 150px;
}

#onions img {
    position: absolute;
    top: 150px;
    width: 150px;
    height: 90px;
}