/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */
   
.dotted-box {
border: 1px dotted #b8c6e3;
background: #ffffff;
padding: 12px;
border-radius: 12px;
}

body{
  margin:0;
  min-height:100vh;
  display:flex;
  justify-content:center;
  align-items:center;
  overflow:hidden;

  background-color:#f7f7ed;
  background-image:url("https://image2url.com/r2/default/images/1772926202000-8ced412c-8261-48fd-b44d-e12de401d4c8.blob");
  background-repeat:no-repeat;
  background-position:center center;
  background-size:cover;

  font-family:Verdana, sans-serif;
}
#main{
  position:fixed;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  width:85vw;
  max-width:800px;
  height:80vh;
  max-height:700px;
  background:white;
  border-radius:20px;
  z-index:999;
  overflow:visible;
}

#titleimg{
  position:absolute;
  top:-80px;
  left:75px;
  width:150px;
}

#logo{
  position:absolute;
  top:-180px;
  left:500px;
  width:480px;
}

#spunky{
  position:absolute;
  top:-20px;
  right:-160px;
  width:150px;
}
#japaneseletter {
position: fixed;
    top: 499px;
    right: -289px;
    transform: translateX(-50%);
    width: 167px;
    z-index: 9999;
    
}
#pandachatborder {
position: absolute;
    top: 53px;
    left: -176px;
    width: 150px;
}
#kawaiicloudbox {
	position: fixed;
    top: 35px;
    right:-160px;
    transform: translateX(-50%);
    width: 250px;
    z-index: 9999;
    
}
#pixelphone {
	position: fixed;
    top: 350px;
    left:-100px;
    transform: translateX(-50%);
    width: 150px;
    z-index: 9999;
    
}

#girdancing{
position: fixed;
    top: 634px;
    left: -7px;
    transform: translateX(-50%);
    width: 74px;
    z-index: 9999;
}

.sidebox{
  position:absolute;
  right:-220px;
  width:180px;
  height:100px;          /* fixed height */
  padding:12px;
  border:1px dotted #b8c6e3;
  border-radius:12px;
  background:white;
  overflow-y:auto;       /* enables vertical scrolling */
  overflow-x:hidden;     /* prevents sideways scroll */
}

#minibox{
  top:210px;
}

#minibox2{
  top:58%;
}

#chatbox{
  position: absolute;

  left: -300px;   /* move further away from main box */
  top: 70px;

  width: 260px;
  height: 220px;

  padding: 12px;

  background: white;
  border: 1px dotted #b8c6e3;
  border-radius: 12px;

  z-index: 10000;
  overflow: hidden;
}
#chatbox .chatframe{
  width: 100%;
  height: calc(100% - 28px);
  overflow: hidden;
}

#chatbox iframe{
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
#minibox3{
  top:480px;
  left:-155px;
  width:100px;
  height:50px;
}