@import url(MS\ Gothic\ Regular.ttf);


/*default shit*/
body{
  cursor: url(Clover.cur), default;
}

body:active{
  cursor: url(Clover\ -\ Handwriting.cur), auto;
}

*{
  font-family: 'MS Gothic Regular';
}

a {
  color: inherit;
  text-decoration: none;
  cursor: url(Clover\ -\ Handwriting.cur), pointer;
}

/*border of the entire thingy*/
.layout{
  border: 2px solid black;
  border-radius: 35px;
  border-top-left-radius: 0;
  border-bottom-right-radius: 0;
  box-shadow: rgba(0, 0, 0, 0.295) 2px 2px 10px;
  height: 59em;
  width:80%;
  margin: 0 auto 0 auto;
  margin-top: 40px;


}

/*flexbox code (decides how it displays on web)*/
.container{
  position: relative;
  display: grid;
  grid-gap: 10px;
  margin-top: 5px;
  grid-template:
  "header header header"
  "featured words lsidebar"
  "featured navbar lsidebar"
  "featured stuff lsidebar"
  / 500px 1fr;
  

}

.child{
  border: 1px solid black;
  border-radius: 4px;
  margin: 10px 10px auto 10px;
  display: block;
}

.featured{
  grid-area: featured;
  height: 670px;
  margin: 10px 15px 5px 25px;
  overflow-y: scroll;
}

.header{
  grid-area:header;
  height: 200px;
  border-radius: 10px;
  margin-left: 20px;
  margin-right: 15px;
  padding: 15px 0 0 25px;
}

.words{
  box-sizing: border-box;
  grid-area: words;
  height: 35px;
  margin-right: 2px;
  padding-top: 10px;
  padding-left: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.navbar{
  display: flex;
  grid-area: navbar;
  grid-row-start: 2;
  margin-top: 60px;
  height: 25px;
  margin-right: 2px;
  border: none;
}

.stuff{
  box-sizing: border-box;
  grid-area: stuff;
  grid-row-start: 2;
  height: 583px;
  margin: 100px 2px auto 10px;
  overflow-y: scroll;
  padding: 5px 10px 5px 10px;
}

.lsidebar{
  grid-area: lsidebar;
  grid-column-start: 3;
  width: 290px;
  height: 670px;
  margin: 10px 25px 5px 25px;
  overflow-y: scroll;
}

.sheader{
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
  font-weight: bold;
  margin-bottom: -10px;
}

button{
  margin-right: 15px;
  width: 50%;
}

button:hover{
  cursor: url(Clover\ -\ Handwriting.cur), auto;
}

.helpspan:hover{
  cursor: url(Clover\ -\ Help\ Select.cur), auto;
}

.banner{
  padding: 5px 10px 5px 10px;
  margin: 0 0 0 0;
  text-align: center;
  background-color: aliceblue;
  position: absolute;
}

.sidebar{
  width: 270px;
  border-left: none;
  border-right: none;
  border-top: none;
}

.diary{
  margin-top: 20px;
}

.unavailable:hover{
  cursor: url(Clover\ -\ Unavailable.cur);
}

.feat{
  width: 438px;
  border-left: none;
  border-right: none;
  border-top: none;
}

.error{
  margin-top: 40px;
}