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

body {
  background-image: url("website-background.png");
  background-size: cover;
  background-position: center;
  height: 100vh;
  margin: 0;
  color: black;
  font-family: 'aseprite', Courier;
  font-size: 200%;
  margin-top: 50px;
  margin-left: 350px;
  margin-right: 350px;
  margin-bottom: 50px;
}
 

.header{
  color: blue;
  border: 5px dashed darkorange;
  border-radius: 18px;
  padding: 18px;
  background: rgba(255, 255, 224, 0.85);
  margin-bottom: 30px;
  font-size: 150%;
}



/*main page layout*/
.container {
  display: grid;
  grid-gap: 5px;
  grid-template:
  "side main"
  "side main"
  / 175px 1fr;
  border: 5px double blue;
  background: rgba(255, 255, 224, 0.5);
}

/*the main text box*/
main {
  grid-area: main;
  position: relative;
  max-height: 600px;
  min-height: 600px;
  box-sizing: border-box;
  background-color: lightyellow;
  padding: 15px;
  overflow-y: auto;
  border-radius: 5px;
  opacity: 0.8;
}


.container main header {
  font-size: 150%;
  color: black;
  border: none;
  background-color: lightyellow;
  border: 3px dotted blue;
  border-radius: 5px;
  box-sizing: border-box;
  padding: 5px;
}

.container main p {
  left: 32px;
  right: 32px;
}

/* for possible use later

.container for image in text {
  display: flex;
  position: relative;
}

.container for image in text p {
  height: 50px;
  width: 50px;
  position: absolute;
  top: -50px;
  transform: translate-Y(100%);
  background-color: blue;
}
*/

/*my sidebar*/
side {
  grid-area: side;
  position: relative;
  max-height: 600px;
  min-height: 600px;
  background: rgba(255, 140, 0, 0.75);
  box-sizing: border-box;
  color: darkred;
  border-radius: 5px;
}


/*my links*/
.container side p {
  padding: 5px;
  margin: 2px;
  border-bottom: 3px dotted darkred;
  border-radius: 5px;
}

  a:link {
  color: darkred;
  }
  a:visited {
  color: darkred;
  }
  a:hover {
  text-decoration: none;
  }
  
.container img {
  height: 150px;
  border: 3px dashed darkred;
  border-radius: 5px;
}



/*jack image*/
.mouse img {
  position: absolute;
  right: 100px;
  bottom: 100px;
}

.bottomtext {
  margin: 50px;
}

.bottomtext p {
  font-size: 50%;
  background-color: pink;
}

/*tutorial*/





