/* Created By David Zhan and Michael Liu for the TitanHacks 2020 Hackathon */
html {
    height: 100%;
}
body {
    margin: 0;
    font-family: 'Press Start 2P', cursive;
    background-color: #59c3b1; /* in case gradients not supported */
    background-image: linear-gradient(to top right, #59c3b1, #e7d093);
    background-attachment: fixed;
}

h1#title {
    text-align: center;
    font-size: 40px;
    margin-top: 20px;
    margin-bottom: 2px;
}

span {
    color: white;
    background-color: black;
}

div#error {
    width: 800px;
    text-align: center;
}
div#error h3 {
    margin: 0;
    padding: 10px;
    background-color: red;
}

div#instructions {
    width: 800px;
    margin: auto;
}
    div#instructions h4 {
        font-size: 25px;
        margin-top: 10px;
        margin-bottom: 5px;
        text-decoration: underline;
    }
    div#instructions p {
        font-size: 20px;
        margin-top: 10px;
        margin-bottom: 30px;
    }

div#scene {
    background-color:darkkhaki;
    border: 8px solid black;
    width: 800px;
    height: 400px;
    margin: auto;
    position: relative;
}
div.windows {
    background-color: skyblue;
    width: 100px;
    height: 100px;
    position: absolute;
    bottom: 150px;
}
    div#window1 {
        left: 150px;
    }
    div#window2 {
        left: 350px;
    }
    div#window3 {
        right: 50px;
        display: none;
    }

img#player {
    width: 150px;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 100;
}
img#table {
    width: 200px;
    position: absolute;
    bottom: 0;
    left: 300px;
    z-index: 1000;
}
img#mask {
    width: 50px;
    position: absolute;
    bottom: 110.34px;
    left: 350px;
    z-index: 1000;
}
img#door {
    width: 100px;
    position: absolute;
    bottom: 0;
    left: 600px;
}

.row3 {
    bottom: 217px;
}
.row2 {
    bottom: 103px;
}
.row1 {
    bottom: 15px;
}
img#shelf {
    width: 500px;
    position: absolute;
    bottom: 0;
    left: 150px;
    z-index: 1000;
}
img.tp {
    width: 40px;
    position: absolute;
    left: 180px;
    z-index: 1000;
}
img.water {
    width: 25px;
    position: absolute;
    left: 260px;
    z-index: 1000;
}
img.candy {
    width: 60px;
    position: absolute;
    left: 310px;
    z-index: 1000;
}
img.apple {
    width: 50px;
    position: absolute;
    left: 400px;
    z-index: 1000;
}
img.soap {
    width: 30px;
    position: absolute;
    left: 470px;
    z-index: 1000;
}
img.firstaid {
    width: 60px;
    position: absolute;
    left: 540px;
    z-index: 1000;
}

img#right-arrow {
    width: 100px;
    position: absolute;
    right: 10px;
    bottom: 100px;
}

img#left-arrow {
    width: 100px;
    position: absolute;
    left: 10px;
    bottom: 100px;
}

img#sink {
    width: 110px;
    position: absolute;
    left: 280px;
    bottom: 0;
    z-index: 1000;
}

img#toilet {
    width: 100px;
    position: absolute;
    left: 80px;
    bottom: 0;
}

div#wall {
    display: none;
    width: 20px;
    height: 400px;
    position: absolute;
    right: 300px;
    bottom: 0;
    background-color: #754517;
}

div#livingroom {
    display: none;
    width: 300px;
    height: 400px;
    position: absolute;
    right: 0;
    bottom: 0;
    background-color: darkkhaki;
}

div#repCounter h6 {
    margin: 0;
    font-size: 20px;
    padding: 5px;
}