* {
    box-sizing: border-box;
}
body {
    margin: 0;
    font-family: consolas, monospace;
    text-transform: none;
    cursor: crosshair;
    overflow: hidden;
    background: #000;
}
.room-page {
    height: 100vh;
    background: #000;
    background-image: url("/images/roombg3.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
}
.desktop {
    position: relative;
    width: 100%;
    height: 100%;
}
.bubble-nav {
    position: absolute;
    top: 35px;
    left: 50%;
    transform: translateX(-50%);
    z-index:4;
}
.nav-bubble {
    position: absolute;
    width: 78px;
    height: 78px;
    border-radius: 48% 52% 49% 51%;
    background: #d9d9d9;
    border: 1px solid #444;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    color: black;
    text-decoration: none;
    cursor: crosshair;
    box-shadow:
        4px 4px 0 #555,
        inset 2px 2px white,
        inset -3px -3px #333;
    transition:0.1s;
}
.nav-bubble:hover {
    transform: translate(2px,2px);
    box-shadow:
        1px 1px 0 #555,
        inset 3px 3px #333,
        inset -2px -2px white;
}
.home {
    left: -160px;
    top: 45px;
    font-size: 35px !important;
}
.writing {
    left: -70px;
    top: -8px;
}
.music {
    left: 45px;
    top: 15px;
}
.photos {
    left: 165px;
    top: -2px;
}
.videos {
    left: -30px;
    top: 90px;
}
.closet {
    left:125px;
    top:90px;
}
.circle {
    position: absolute;
    background: rgba(236,236,232,.95);
    border: 1px solid #555;
    box-shadow:
        8px 8px 20px rgba(0,0,0,.35),
        inset 2px 2px white,
        inset -2px -2px #666;
    overflow: hidden;
    padding: 25px 70px 70px 70px;
    z-index: 2;
}
.circle-left {
    width: 520px;
    height: 520px;
    border-radius: 48% 52% 51% 49%;
    left: 190px;
    top: 150px;
    padding:50px 70px 70px 80px;
}
.circle-right {
    width: 360px;
    height: 360px;
    border-radius: 51% 49% 48% 52%;
    left: 560px;
    top: 330px;
}
.circle-content {
    height:100%;
}
.circle-content::-webkit-scrollbar-thumb {
    background:#777;
    border:1px solid #eee;
}
.scroll-content {
    height: 100%;
    overflow-y: auto;
}
.circle h2, .circle h3 {
    text-align: center;
    font-size: 10px;
}
.circle p {
    font-size: 10px;
}
.sticker {
    position: absolute;
    z-index: 5;
    pointer-events: none;
    height: auto;
}
.sticker-whitecat {
    left: 255px;
    top: -74px;
    width: 500px;
    height: auto;
}
.sticker-buddha {
    left: 615px;
    top: 550px;
    width: 250px;
    height: auto;
}
.sticker-apwhite {
    left: 250px;
    top: 660px;
    width: 400px;
    height: auto;
}
.desktop-folder {
    position: absolute;
    width: 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: crosshair;
    user-select: none;
}
.desktop-folder img {
    width: 48px;
    height: auto;
    z-index: 3;
}
.folder-label {
    margin-top: 2px;
    font-size: 9px;
    color: white;
    text-shadow: 1px 1px black;
}
.folder-collage {
    left: 75px;
    top: 140px;
}
.folder-memory {
    right: 450px;
    top: 350px;
}
.home-image {
    position: absolute;
    left: -160px;
    top: 45px;
    z-index: 4;
    display: block;
}

.home-image img {
    width: 100px;
    height: auto;
    display: block;
    cursor: crosshair;
}
.home-image:hover img {
    content: url("/images/icons/whtarrowhov.png");
}