@import url("https://fonts.googleapis.com/css2?family=Shantell+Sans:wght@700&display=swap");
body {
  margin: 0;
  overflow: hidden;
  top: 0;
  left: 0;
  background: #ddddfd;
  cursor: url("https://raw.githubusercontent.com/rigelle-cruz/cozy/385b0d70e94d934c5fd0ac44351efcb5c62644f8/assets/cursor/cursor_default.png"), default;
}

h2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 20px;
  letter-spacing: 10px;
  color: #687fca;
  font-family: "Shantell Sans", cursive;
}

#intro-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ddddfd;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#start-button {
  cursor: url("https://raw.githubusercontent.com/rigelle-cruz/cozy/385b0d70e94d934c5fd0ac44351efcb5c62644f8/assets/cursor/cursor_select.png"), pointer;
  background: none;
  border: none;
  outline: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 200px;
  letter-spacing: 10px;
  color: #687fca;
  font-family: "Shantell Sans", cursive;
}
#start-button .start {
  font-family: "Shantell Sans", cursive;
  font-size: 30px;
  color: #7f90c9;
  letter-spacing: 10px;
}

.room {
  background-image: url("https://raw.githubusercontent.com/rigelle-cruz/cozy/385b0d70e94d934c5fd0ac44351efcb5c62644f8/assets/room/room.PNG");
  background-size: 1000px;
  background-repeat: no-repeat;
  background-position: center center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100vh;
  opacity: 0;
  transition: opacity 1s;
}
.room.fade-in {
  opacity: 1;
}

.draggable {
  cursor: url("https://raw.githubusercontent.com/rigelle-cruz/cozy/616aa18592cda3090c8ff3d56ad87d14e362af12/assets/cursor/cursor_grab.png"), grab;
}

.draggable:active {
  cursor: url("https://raw.githubusercontent.com/rigelle-cruz/cozy/385b0d70e94d934c5fd0ac44351efcb5c62644f8/assets/cursor/cursor_grabbing.png"), grabbing;
}

.furniture {
  background-color: #ddddfd;
  border: 4px solid #7f90c9;
  border-radius: 20px;
  margin-top: 20px;
  margin-left: 20px;
  height: 800px;
  width: 400px;
}

.clear-button {
  cursor: url("https://raw.githubusercontent.com/rigelle-cruz/cozy/385b0d70e94d934c5fd0ac44351efcb5c62644f8/assets/cursor/cursor_select.png"), pointer;
  background: #ddddfd;
  width: 200px;
  font-family: "Shantell Sans", cursive;
  margin: 20px;
  padding: 10px;
  font-size: 15px;
  color: #7f90c9;
  letter-spacing: 10px;
  border: 4px solid #7f90c9;
  border-radius: 20px;
  top: 740px; 
  left: 20px;
}

.clear-button:hover {
  background-color: #7f90c9;
  color: #ddddfd;
}


ul li {
  padding-bottom: 20px;
  list-style-type: none;
}

.instructions {
  width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 15px;
  letter-spacing: 5px;
  color: #687fca;
  font-family: "Shantell Sans", cursive;
  position: fixed;
  bottom: 0; 
  right: 0;
}

@media screen and (max-width: 1125px) {
  .instructions {
    display: none;
  }
}


#wall-decor {
  position: absolute;
  transform: translate(20px, 425px);
}
#wall-decor img {
  width: 200px;
}

#table {
  position: absolute;
  transform: translate(-5px, 150px);
}
#table img {
  width: 400px;
}

#comp-chair {
  position: absolute;
  transform: translate(0px, 15px);
}
#comp-chair img {
  width: 200px;
}

#laptop {
  position: absolute;
  transform: translate(95px, 260px);
}

.laptop-on {
  cursor: url("https://raw.githubusercontent.com/rigelle-cruz/cozy/385b0d70e94d934c5fd0ac44351efcb5c62644f8/assets/cursor/cursor_select.png"), pointer;
  position: absolute;
  top: 81px;
  left: 63px;
  width: 150px; 
}

.laptop-off {
  cursor: url("https://raw.githubusercontent.com/rigelle-cruz/cozy/385b0d70e94d934c5fd0ac44351efcb5c62644f8/assets/cursor/cursor_select.png"), pointer;
  position: absolute;
  top: 100px;
  left: 75px;
  width: 130px; 
}


#lamp {
  position: absolute;
  transform: translate(250px, 70px);
}
#lamp img {
  width: 100px;
}
#lamp #light-source {
  width: 100px;
  height: 100px;
  background-color: #ff8c00;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.5s ease;
  background: radial-gradient(circle, #ffe562, transparent 80%);
  filter: brightness(2);
  transform: translate(5px, -120px);
}
#lamp .lamp-button {
  cursor: url("https://raw.githubusercontent.com/rigelle-cruz/cozy/385b0d70e94d934c5fd0ac44351efcb5c62644f8/assets/cursor/cursor_select.png"), pointer;
  background: none;
  border: none;
  outline: none;
}

.muted {
  cursor: url("https://raw.githubusercontent.com/rigelle-cruz/cozy/385b0d70e94d934c5fd0ac44351efcb5c62644f8/assets/cursor/cursor_select.png"), pointer;
  background-image: url("https://raw.githubusercontent.com/rigelle-cruz/cozy/385b0d70e94d934c5fd0ac44351efcb5c62644f8/assets/icons/mute-icon.svg");
  background-size: 100%;
  background-repeat: no-repeat;
  width: 50px;
  height: 50px;
  position: fixed;
  right: 20px;
  top: 20px;
  
}

.unmuted {
  cursor: url("https://raw.githubusercontent.com/rigelle-cruz/cozy/385b0d70e94d934c5fd0ac44351efcb5c62644f8/assets/cursor/cursor_select.png"), pointer;
  background-image: url("https://raw.githubusercontent.com/rigelle-cruz/cozy/385b0d70e94d934c5fd0ac44351efcb5c62644f8/assets/icons/unmute-icon.svg");
  background-size: 100%;
  background-repeat: no-repeat;
  width: 50px;
  height: 50px;
  position: fixed;
  right: 20px;
  top: 20px;
}