
body {
background-image: url(bg3.png);
color: black; 
font-family: arial;
margin: 0;
padding: 0;
border: 0;
border-color:#ffc587;
border-style: groove;
text-align: left;
}

header {
  border: 0px;
  padding: 1%;
  margin-left: 2%;
  margin-right: 4%;
  margin-bottom: 2%;
  text-align: left;
}

footer {
  border: 0px;
  padding: 1%;
  margin-left: 2%;
  margin-right: 4%;
  margin-bottom: 2%;
  text-align: left;
}

main {
  background-color:#ffe7b2;
  border: 5px;
  border-style:groove;
  border-color:#ffc587;
  padding: 1%;
  margin-left: 2%;
  margin-right: 4%;
  margin-top: 2%;
  margin-bottom: 2%;
  text-align: left;
  font-size: 16px;
}

table {
  width: 45%;
  border-collapse: collapse;
}

td, th {
  border: 3px groove #ffc587;
  text-align: left;
  padding: 8px;
}

td.snd {
  width: 10%;
  text-align: center;
}

td.fst {
  width: 25%;
}

tr:nth-child(even) {
  background-color: #9dffbe;
}

tr:nth-child(odd) {
  background-color: #7bffa7;
}


nav {
background-color: #222222;
text-align: left;
}

.sidebar {
  padding: 5px;
  position: fixed;
  width: 12%;
  height: 100%;
  color: white;
}

.sidebar ul {
  display: block;
  list-style: none;
  padding: 10px;
}

.sidebar li {
  padding: 5px;
  color: #ffffff
}

.sidebar a {
  color: #87A9FF;
  text-decoration: none;
}

.sidebar a:visited {
  color: #87cfff;
  text-decoration: none;
}

.sidebar a:hover {
  color: #d4d4d4;
  text-decoration: underline;
}

hr{
    border:2px double #ffa96f
}

p {
  font-size: 16px;
}

a {
  color: #3700ff;
  text-decoration: none;
}

a:visited {
  color: #ff8838;
  text-decoration: none;
}

a:hover {
  color: #ff8838;
  text-decoration: underline;
}

abbr {
  text-decoration: none;
  color: #000000;
}

abbr:hover {
  text-decoration: none;
  color: #ff8838;
  cursor: crosshair;
}

.red {
  color: #FF0000;
}

.cr {
  font-size: 18px;
  padding-bottom: 5px;
  padding-top: 5px;
}

.smol {
  font-size: 12px;
  text-decoration: none;
  list-style: none;
}

.blink {
  animation: blink-animation 0.5s steps(5, start) infinite;
  -webkit-animation: blink-animation 0.5s steps(5, start) infinite;
}

@keyframes blink-animation {
  to {
    visibility: hidden;
  }
}

@-webkit-keyframes blink-animation {
  to {
    visibility: hidden;
  }
}

