/* change background here */
html, body {
  min-height: 100vh;
background-color: #be9ead;
  background-image: url("img/fadelace.png");
    background-attachment: fixed;
  width: 100%;
  padding: 0;
  margin: 0;
    font-family: "roboto";
}

.layout-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.layout-wrapper > .page-content {
  background: white;
  color: white;
  padding: 20px;
}


.layout-wrapper > header, .layout-wrapper > footer {
  background: teal;
  padding: 20px 0;
    text-align: center;
}

/* Solid border */
hr.solid {
  border-top: 2px solid #bbb;
}

/* sidenav style */
.sidenav {
  height: 100%;
  width: 160px; /* should be same as left margin width */
  border-right: 1px solid black;
  border-left: 1px solid black;
  border-top: 1px solid black;
  border-bottom: 1px solid black;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: black;
  overflow-x: hidden;
  padding-top: 1px;
}

.sidenav img {
    position: absolute;
    padding: 4px;
    left: 4;
    bottom: 0;
}

.sidenav a {
  padding: 6px 8px 6px 16px;
  font-size: 14px;
  color: blue;
  display: block;
}

.sidenav a:hover {
  color: magenta;
background-color: #be9ead;
}

.sidenav a:visited {
  color: purple;
}


.main {
  margin-left: 160px; /* should be same as sidenav width */
  font-size: 14px; 
  padding: 0 10px;
    
}

.p {
display: block;
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
      color: black;
}

.div { 
  width: 600px; 
  margin: 0 auto; 
  text-align: justify;
}

/* main table style */
table.maintable, td { 
 border-right: 2px solid black;
  border-left: 2px solid black;
  border-top: 2px solid black;
  border-bottom: 2px solid black;
  border-collapse: collapse;
  padding: 10px;
  background-color: white;
  opacity: 90%;
  width: 600px;
 margin-left: auto;
  margin-right: auto;
}   

table.maintable, th {
  padding: 10px;
   background-color: black;
   justify-content: center;
   align-items: center;
      background-image: url("img/blacklace.png");

}


/* sidenav table style */
table.sidetable tr, table.sidetable td {
  border-right: 1px solid white;
  border-left: 1px solid black;
  border-top: 1px solid black;
  border-bottom: 1px solid white;
  border-collapse: collapse;
  padding: 0;
  background-color: white;
  background-image: url("img/whitelace.png");
  opacity: 95%;
  width: 160px;
}   

table.sidetable th {
    padding: 1px;
  background-image: url("img/blacklace.png");
}

/*for bottom of maintable*/
.wrapper {
    display: flex;
    align-items: flex-end;
}


/* unvisited link */
a:link {
  color: blue;
}

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

/* mouse over link */
a:hover {
  color: magenta;
}

/* selected link */
a:active {
  color: darkblue;
}


h1{
    color: white;
    margin: auto;
    text-align:left;
    font-size: 30;
    padding: 4;
     text-shadow: 3px 3px 5px black;
   
}


h1::before {
  content: url(img/pointersmall.png); 
  display: inline-block;

}


h2 {
  color: black;
    font-size: medium;
    padding: 0;
}

h3 {
  color: white;
    font-size: medium;
    padding: 0;
    text-shadow: 3px 3px 5px black;
}

@media screen and (max-height: 450px) {
  .sidenav {padding-top: 15px;}
  .sidenav a {font-size: 18px;}
}