/* GENERAL ROOM STUFF */

* {
    box-sizing: border-box;
    color: white;
}

body {
    background-color: black;
    font-family: "Andale Mono", sans-serif;
}

section {
    background-color: black;
    width: 1423px;
    margin: 0 auto;
}

.room {
    height: fit-content;
    width: 1423px;
    z-index: 0;
    border: 1px solid rgba(0, 0, 0, 0);
}

.room-sign {
    border: 1px solid black;
    background-color: rgba(0, 0, 0, 1);
    text-align: center;
    color: white;
    padding-top: 10px;
    padding-bottom: 10px;
}

.room-sign p {
    position: relative;
        top: -75px;
        right: 20px;
    float: right;
    z-index: 10;
}

h1.room-number {
    position: relative;
    z-index: 5;
}

.buttonholder {
    display: inline-block;
    position: relative;
    bottom: 670px;
    left: 1300px;
}

.button {
    height: 50px;
    line-height: 50px;
    text-align: center;
}

a, p, h1, h2 {
    color: white;
    text-decoration: none;
}

a:hover {
    color:rgb(148, 43, 24);
}

/* ROOM 0 */

#room0 {
    background: rgba(0, 0, 0, 1);
    box-sizing: border-box;
    padding-left: 20px;
    padding-bottom: 10px;
    border: 1px dashed rgb(51, 51, 51);
}

#room0 ul {
    list-style-type: none;
}

#room0 ul .asterisk {
    list-style-type: '* ';
}

#room0-photo {
    width: 800px;
    height: 500px;
    border: 1px solid rgba(0, 0, 0, 0);
    float: right;
}

#bookshelf-background {
    width: inherit;
    background-color: rgb(51, 51, 51);
    padding: 50px;
}

#bookshelf {
    background-color: grey;
    width: 600px;
    height: 400px;
    margin: auto;
}

.sketchbook {
    rotate: 90deg;
    text-align: center;
    padding: 15px;
    border: 1px solid white;
    background:rgb(51, 51, 51);
}

.sketchbook:hover {
    background:rgb(148, 43, 24);
}

#sketchbook-1 {
    position: relative;
        left: -60px;
        top: 216px;
    rotate: 88deg;
    width: 250px;
}

#sketchbook-2 {
    position: relative;
        left: -0px;
        top: 165px;
    rotate: 83deg;
    width: 250px;
}

#sketchbook-3 {
    position: relative;
        left: 23px;
        top: 79px;
    rotate: 74deg;
    width: 325px;
}



