/* 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." */

@font-face {
  font-family: "JaneAust";
  src: url("data/fonts/JaneAust.ttf");
}

@font-face {
  font-family: "sabrina";
  src: url("data/fonts/sabrina.ttf");
}
    
body {
  background-image: url("data/images/stripes1.png");
  min-height: 100vh;
  margin: 0 auto;
  font-family:"sabrina";
  color:#30040f;
  text-shadow: 0 0 4px #841230;
  cursor: url("data/images/cursor2-2.png"), pointer;
}

.box_row {
  display: flex;
  flex-direction: row;
  align-content: center;
  align-self: center;
  justify-content: center;
}
.taskbar {
  display: flex;
  flex-direction: row;
  align-content: center;
  align-self: center;
  justify-content: center;
}
.taskbar button {
  font: inherit;
  background-color: #fc88a6;
  margin: 10px;
  color:#30040f;
  text-shadow: 0 0 4px #841230;
}
.taskbar button:hover {
  background-color: #64902e;
  cursor: url("data/images/cursor2-2.png"), pointer;
}
.taskbar button:active {
  background-color: #416522;
  cursor: url("data/images/cursor2.png"), pointer;
}
.box_col {
  display: flex;
  flex-direction: column;
  align-content: center;
  align-self: center;
  justify-content: center;
}
#title {
  border-bottom: #64902e 8px dotted;
  height: 100px;
  font-size: 50px;
  padding-top:12px;
  padding-bottom:6px;
}
#homebar {
  height: 98px;
  font-size: 40px;
  padding: 10px;
}
#postit {
  height:350px;
  border:#ed7990 8px solid;
  width:350px;
  font-size: 16px;
  background-image:url('data/images/center1.png');
  top:10vh;
  left:18vw;
  justify-content: flex-start;
  cursor: url("data/images/cursor2-2.png"), pointer;
}
#postit_title {
  position: relative;
  padding: 50px;
  padding-bottom: 10px;
  top: 0%;
  left: 0%;
}
#postit_content {
  position: relative;
  padding: 50px;
  padding-top: 0;
  overflow-y: scroll;
  height: 140px;
  justify-content: flex-start;
  scrollbar-color: transparent transparent;
  color:#3e2723;
  text-shadow: 0 0 4px #ed7990;
}
.links {
 color:#3e2723;
 text-shadow:0 0 4px #ed7990 ;
 font-weight: bold;
}
#projects {
  background-image:url(data/images/tree.png);
  height:350px;
  width:350px;
  border:#ed7990 8px solid;
  font-size: 19px;
  margin:10px;
  padding:10px;
}
#projects_content {
  color:#3e2723;
  text-shadow: 0 0 4px #ed7990;
  font-size: 16px;
  padding: 15px;
}
#friendlinks {
  background-image:url('data/images/polkadot.png') ;
  border: #64902e 8px solid;
  font-size:18px;
  height:300px;
  width:150px;
  cursor: url("data/images/cursor2-2.png"), pointer;
}















