/* 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-color: black;
  color: white;
  font-family: Verdana;
  text-align: center;
  background-image: 
    linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,1)),
    url("bg.png");
  background-attachment: fixed;
}

.header{
  rotate: -6.66deg;
  width: 500px;
}

div {
  background-color: #1e171e;
  width: max-content;
  padding: 10px;
  border: 10px double #a88d4e;
  /* border-left-color: transparent;*/
  margin: 0 auto;
  border-image: url("./staysilly/staysilly_bg.gif") 30 round;
  /*! border-radius: 10px; */
}

.container {
  display: grid;
  grid-template-areas:
    "header header"
    "menu content"
    "footer footer";
  grid-template-columns: 1fr 6fr;
  gap: 5px;
  padding: 5px;
  width: 75%;
  margin: 0 auto;
}

.container > div.menu {
  grid-area: menu;
  margin: 0 0;
  width: auto;
}
.container > div.content {
  grid-area: content;
  margin: 0 0;
  width: auto;
}
.container > div.footer {
  grid-area: footer;
  margin: 0 0;
  width: auto;
}


.tip{
  border: 1px solid;
  background-color: rgba(255, 239, 0, 0.15);
  border-color: rgb(255, 255, 0);
  color: rgb(255,255,196);
  width: auto;
  border-radius: 10px;
  padding: 10px;
}
pre.code {
  text-align: left;
  background-color: rgba(0,0,0,0.5);
  border: 1px solid;
  border-color: black;
  border-radius: 10px;
  color: white;
  }

 /* unvisited link */
a:link {
  color: white;
  text-decoration: none;
}

/* visited link */
a:visited {
  color: white;
}

/* mouse over link */
a:hover {
  color: rgb(255,245,235);
  text-decoration: none;
}

/* selected link */
a:active {
  color: white;
  text-decoration: none;
} 