a {
    font-size: 10px;
    font-family: cursive;
    margin: 50px;
    color:white;
}
a:hover {
    color: WHITE;
}

.outside-link {
    position: fixed;
    bottom: 20px;
    right: 50px;
    color: rgb(0, 0, 0);
    font-family: 'Courier New', Courier, monospace;
}

body.home {
    background-color: blanchedalmond;
}

body.corridor {
    background-color:black;
}

body.room {
    background-color:blanchedalmond;
}

.drawing {
    display: block;
    width:300px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 1%;
    border: 3px solid #FFB900;
    margin-bottom: 5%;
    transition: transform 2s;
}

.drawing:hover {
    -webkit-transform: scaleY(-1);
    transform: scaleY(-1);
}
.table {
    position:absolute;
    width:800px;
    left: 300px;
}

.cake {
    position:absolute;
    width:200px;
    left:600px;
    bottom:170px;
    opacity:0; 
    transition: opacity 2s;
}
.cake:hover {
    position:absolute;
    width:200px;
    left:600px;
    bottom:170px;
    opacity:100;

}

.first-image {
    display: block;
    width: 300px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20%;
}

.window-image {
    position:absolute;
    width:300px;
    left: 120px;
    bottom:350px;
}

.window-image-second {
    position:absolute;
    width:300px;
    right: 120px;
    bottom:350px;
}

.lightswitch {
width:100px;
display: block;
margin-left: auto;
margin-right: auto;
margin-top:20%;
}