/* 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." */
   
.header {
  background-color: #ceaefa;
  text-align:center;
  font-family: "Courier New", Courier, monospace;
  text-shadow: 0 0 3px purple;
}

/* Align things on center */
.center {
  text-align: center;
}

.backsite {
  background-color: #9966CC;
  border: white dashed 5px;
  width: 800px;
	padding: 5px;
	text-align: justify;
}

 idkkkk {
  background-color: white;
  width: 300px;
  border: 5px solid gray;
  padding: 50px;
  margin: 20px;
}

.warning {
  color: tomato;
}

.brackets {
  border: purple 10px;
  border-width: 0 3px 0 3px;
  padding: 0px 4px 0px 4px;
  width:400px;
  height:100px;
  overflow-y:auto;
  background-color: white;
  margin-right: 25px;
}

.footer {
  text-align: center;
  padding: 5px;
  background-color: #abbaba;
  color: black;
}

details {
  font:
    16px "Open Sans",
    "Calibri",
    sans-serif;
  width: 620px;
}

details > summary {
  padding: 2px 6px;
  width: 15em;
  background-color: #dddddd;
  border: none;
  box-shadow: 3px 3px 4px black;
  cursor: pointer;
}

details > p {
  border-radius: 0 0 10px 10px;
  background-color: #dddddd;
  padding: 2px 6px;
  margin: 0;
  box-shadow: 3px 3px 4px black;
}

details:open > summary {
  background-color: #ccccff;
}

body {
  position: relative;
  display: block;
  margin-left:auto;
  margin-right:auto;
}

.container {
  display: grid;
  grid-template-columns: 300px 500px;
  grid-template-rows: 100px auto;
  gap: 0px 0px;
  grid-template-areas:
    "heading heading"
    "navigation mainContent";
}
.heading { grid-area: heading; }
.navigation { grid-area: navigation; }
.mainContent { grid-area: mainContent; }


#nav {
background-color: #fefefe;
width: 175px;
position: relative;
}
 






