@font-face {
  font-family: "rainyhearts";
  src: url("../fonts/rainyhearts.ttf");
}

@font-face {
  font-family: "mintsoda";
  src: url("../fonts/MintsodaLimeGreen.ttf");
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

body {
  font-family: rainyhearts, mintsoda, sans-serif;
  font-size: 18px;
  color:#2a0868;
}

h1 {
  font-family: mintsoda, sans-serif;
}

.screen {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr 40px;
  grid-template-areas:
    "desktop"
    "bottom";
  background-color: cadetblue;
  margin: auto;
  width: 100vw;
  height: 100vh;
  border: none;
  margin: 0;
  box-sizing: border-box;
}

.desktop {
  grid-area: desktop;
  background-color: #98c5ff;
  position: relative;
}

.bottom {
  grid-area: bottom;
  background-color: rgb(240, 248, 255);
}

.window {
  border: 4px solid #2a0868;
  box-shadow: 5px 5px 15px #00000072;
  position: absolute;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 20px auto;
  grid-template-areas:
    "window_top"
    "window_content";
}

.window_top {
  grid-area: window_top;
  background-color: #2a0868;
  border-bottom: 4px solid #00000072;
  color: #ffffff;
  position: sticky;
}

.window_content {
  grid-area: window_content;
  padding: 10px;
  background-color: #c3d1f0;
  overflow-y: scroll;
}

.icon {
  width: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  cursor: pointer;
  z-index: 0;
}

.icon_img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  object-position: center;
  display: block;
  margin-bottom: 4px;
  flex-shrink: 0;
}

.icon_text {
  width: 100%;
  text-align: center;
  line-height: 1.2;
  color: #2a0868;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
}

.chibi {
  position: absolute;
  z-index: 4;
}

#me_kins {
  background-color: #0e2e8e;
  width: 300px;
  height: 400px;
  left: calc(50% - 150px);
  top: calc(45% - 200px);
  z-index: 2;
}

#display_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

#info_likes{
  width: 250px;
  height: 400px;
  left: calc(17% - 125px);
  top: calc(60% - 150px);
  z-index: 2;
}

#outfits {
  width: 250px;
  height: 250px;
  left: calc(85% - 125px);
  top: calc(22% - 125px);
  z-index: 2;
}

#reasons_vocaloid {
  width: 450px;
  height: 250px;
  left: calc(70% - 225px);
  top: calc(75% - 125px);
  z-index: 3;
}

#reasons_vocaloid .window_content {
  padding-right: 35px;
}

#musicplayer {
  width: 200px;
  height: 200px;
  left: calc(35% - 100px);
  top: calc(20% - 100px);
  z-index: 1;
}

#questions {
  display: none;
}

#quizzes {
  display: none;
}

#icon_me {
  left: 20px;
  top: 20px;
}

#icon_kins {
  left: 20px;
  top: 120px;
}

#icon_likes {
  left: 20px;
  top: 220px;
}

#icon_questions{
  left: 500px;
  top: 580px;
}

#icon_quizzes {
  left: 600px;
  top: 580px;
}

#icon_vocaloid {
  left: 1000px;
  top: 300px;
}

#icon_reasons {
  left: 1100px;
  top: 300px;
}

#icon_help {
  left: 1400px;
  top: 300px;
}

#chibi_irl {
  left: 450px;
  top: 275px;
}

#chibi_rai {
  left: 1275px;
  top: 525px;
}