

/*This is the default background, to use when page in progress*/
.default {
  background-color: rgb(38, 38, 38);
  font-family: Verdana;
}

/*Index section*/

#index-body {
  background-image: url(/Images/Texture/bnuypattern.png);
  background-color: #1f1e20;
}

.index-box {
  border-image: url(/Images/Texture/borderblack.png);
  border-image-slice: 30;
  border-image-width: 10px;
  border-image-outset: 0;
  background-color: #0000009f;
  color: #e2e2e2;
  border-radius: 10px;
  display: flex; 
  flex-direction: column;
  padding: 10px;
  margin: 10px;
  justify-content: space-evenly;
}

#nav-buttons {
display: flex;
justify-content: center;
align-items: center;
align-items: baseline;
}

.button {
border: none;
color: white;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
}

main {
  display: inline-flex;
}

.done {
  text-decoration: line-through;
  color: #1f1e20;
}

.not-done {
  color: #e2e2e2;
}

/*Index section end*/


 /* General boxes. Same boat as the default body*/

.box1 {
  background-color: rgb(195, 174, 136);
  color: black;
  border: black;
  border-style: solid;
  align-content: center;
  text-align: center;
  padding: 10px;
  margin: 10%;
}

nav {
  background-color: #1f1e20;
  border: #E2FFCD;
  border-style: solid;
  border-width: 3px;
  padding: 5px;
  margin-bottom: 10px;
}

.left-box {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  height: auto;
  width: auto;
  border-style:solid ;
  overflow: auto;
  padding: 10px;
  margin: 20px;
}


