@font-face {
  font-family: "Times";
  src: url("fonts/Times New Roman.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Times";
  src: url("fonts/Times New Roman Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: "Times";
  src: url("fonts/Times New Roman Italic.ttf") format("truetype");
  font-weight: normal;
  font-style: italic;
}

@font-face {
  font-family: "Times";
  src: url("fonts/Times New Roman Bold Italic.ttf") format("truetype");
  font-weight: bold;
  font-style: italic;
}

body {
  margin: 0;
  overflow: hidden;
  background: rgb(235, 235, 235);
}

#workspace {
  width: 100vw;
  height: 100vh;
  overflow: auto;
  cursor: grab;
}

#workspace:active {
  cursor: grabbing;
}

#canvas {
  position: relative;
  width: 4000px;
  height: 3000px;
}

#scene {
  position: absolute;
  top: 500px;
  left: 800px;
}

#toy-text {
  position: absolute;
  top: 150px;
  left: 560px;
  font-family: "Times";

  color: rgb(255, 0, 0);
  font-size: 56px;
  white-space: nowrap;
}

#toy {
  position: absolute;
  top: 240px;
  left: 600px;
  width: 550px;
}

#solder {
  width: 400px;
  cursor: pointer;
}

#solder-wrapper {
  position: absolute;
  top: 20px;
  left: 1280px;
  text-align: center;
}

#solder-label {
  font-family: "Times";
  margin-top: 20px;
  color: rgb(255, 0, 0);
  font-size: 50px;
  }

#info-text {
  position: absolute;
  top: -350px;
  left: 1720px;

  width: 600px;

  font-family: "Times";
  font-size: 22px;
  color: rgb(0, 0, 0);
  text-align: justify;

  white-space: pre-line;

  display: none;
  z-index: 10;
}

.hotspot {
  position: absolute;
  border-radius: 50%;
  cursor: pointer;
}

#btn-yellow-left {
  top: 427px;
  left: 960px;
  width: 45px;
  height: 45px;
}

#btn-yellow-right {
  top: 448px;
  left: 796px;
  width: 45px;
  height: 45px;
}

#btn-triangle {
  top: 383px;
  left: 1000px;
  width: 50px;
  height: 50px;
}

#btn-star {
  top: 280px;
  left: 859px;
  width: 70px;
  height: 70px;
}

#btn-watch {
  top: 531px;
  left: 839px;
  width: 50px;
  height: 50px;
}

#btn-hexagon {
  top: 392px;
  left: 731px;
  width: 50px;
  height: 50px;
}


#downloads-container {
  position: absolute;
  top: 900px;
  left: 1200px;

  display: flex;
  flex-direction: column;
  gap: 20px;
}

.download-item {
  display: flex;
  align-items: center;
  gap: 15px;

  color: rgb(255, 0, 0);
  font-size: 40px;
  font-family: "Times";

  cursor: pointer;
  white-space: nowrap;
}

.download-item img {
  width: 60px;
}

#circuit-base {
  position: absolute;
  top: 560px; 
  left: -280px;
  width: 850px;
  z-index: 2;
}

#circuit-schema {
  display: none;
  position: absolute;
  top: 560px;
  left: -280px;
  width: 850px; 
  z-index: 3;
}

#circuit-label {
  position: absolute;
  top: 630px;
  left: 0px;

  color: rgb(255, 0, 0);
  font-family: "Times";
  font-size: 40px;
  white-space: nowrap;
}

#circuit-click {
  position: absolute;
  top: 679px;
  left: 99px;
  width: 250px;
  height: 200px;
  cursor: pointer;
  z-index: 4;
}

