body {
    background-image: url("/img/backgrounds/editedsnow.png");
    background-size: cover;
    background-attachment: fixed;
    font-family: "Ms UI Gothic";
    font-size: 16px;
    color: #2b445e;
  cursor: url("/img/cursor/snow.png"), auto;
    
}

a:hover, button:hover {
    cursor: url('/img/cursor/snow.png'), pointer;
}

.contain {
  display: grid;
  justify-content: center;
  padding-top: 0px;
  height: 1000px;
  width: 800px;
  margin: 0 auto;
  position: relative;
  box-sizing: border-box;
  gap: 20px 20px;
}

a {
  color: #051630;
  text-decoration: none;
  letter-spacing: normal;
  font-size: 16px;
  text-decoration-line: underline;
  text-decoration-style: dotted;
}

a:hover {
  font-style: italic;
}

#main {
  grid-area: main;
  position: relative;
  top: 0px;
  height: 500px;
  width: 1000px;
  background: #ffffff;
  border-color: #c9b097;
  border-style: outset;
  border-width: 8px;
  overflow: hidden;
  background-image: url("/img/backgrounds/bglowcontrast 2.png");
  
}

#innermain {
  display: grid;
  padding: 20px;
  overflow: auto;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
  grid-template-areas:
    'inbox2 inbox1';
  
  
}

#inbox2 {
  grid-area: inbox2;
  background-image: url("/img/backgrounds/10982.gif");
  border-color: #c9b097;
  border-style: inset;
  border-width: 8px;
  margin: 40px;
  width: 500px;
  height: 300px;
  padding: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
  grid-template-areas:
    'ininbox2 ininbox3';
  gap: 20px;
  
}

#ininbox2 {
  display: inline-block;
  justify-content: center;
  background-size: cover;
  height: 100%;
  overflow: auto;
}

#ininbox3 {
  display: inline-block;
  justify-content: center;
  background-size: cover;
  height: 100%;
  overflow: auto;
}

#inbox1 {
  
  grid-area: inbox1;
  position: absolute;
  top: 50px;
  right: 100px;
  height: 400px;
  width: 200px;
  background-image: url("/img/backgrounds/dithered32.png");
  background-size: cover;
  border-color: #c9b097;
  border-style: inset;
  border-width: 8px;
  border-radius: 100px 100px 0px 0px;
}

#cursor {
  position: absolute;
  z-index: 1000;
  top: 200px;
  left: 800px;
  
  
}

#window {
  position: absolute;
  z-index: 1000;
  top: 420px;
  left: 590px;
  
  
}

h1 {
  font-size: 20px;
  font-weight: bold;
  color: #204357;
  text-shadow: 0px 0px 3px #a0cad9;
  font-style: italic;
}

#backbutton a{
  color: #2b445e;
  text-decoration: none;
  letter-spacing: normal;
  font-size: 18px;
}

#backbutton {
  display: grid;
  place-items: center;
  background: #a2e2f2;
  background: linear-gradient(180deg, rgba(162, 226, 242, 1) 0%, rgba(91, 198, 222, 1) 47%, rgba(247, 243, 240, 1) 100%);
  border-color: #85b3cc;
  border-style: outset;
  border-width: 2px;
  border-radius: 5px 5px 5px 5px;
  width: 110px;
  height: 30px;
  font-size: 18px;
  font-weight: bold;
  top: 750px;
  right: 830px;
  position: absolute;
  z-index: 1000;
  
}