/* You can either copy the below and paste it between style tags on your HTML page, OR you can copy this to a file and name it .css and link it from your HTML page. */
:root {
  --bg-color:#ffffff;
  --border-color:#256b8b;
  --subtitle-color:#1d1c32;
  --link-color:#1d1c32;
}

html, body {
  margin:0;
  padding:0;
  background-color:#e1ffca;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 12px;
}

body a {
  color:#ba364b;
}

a {
  color: #ba364b;
  text-decoration: none;
}

a.class1 {
  font-family: 'Dancing Script', cursive;
  font-size: 38px;
  color: #fff;
  padding-left: 10px;
  padding-right: 10px;
  text-shadow: 3px 3px 3px #ba364b;
}

h1 {
  font-family: 'Press Start 2P', cursive;
  font-size:30px;
  color: #fff;
  padding-top: 20px;
  text-align:center;
	-webkit-text-stroke: 1px #ba364b;
}

p {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 12px;
}

b, strong {
   color: #ba364b;
   }

#content {
  width: 400px;
  position: absolute;
  top: 0;
  right: 0;
  left:0;
  margin-top:0px;
  margin-left:auto;
  margin-right: auto;
  padding-left:20px;
  padding-right:20px;
  background-color: #fff;
  border: 3px solid #ba364b;
}

#nav {
  position: absolute;
  right:0;
  top: 0;
  bottom: 0;
  margin-right: 420px;
  margin-top:auto;
  margin-bottom:auto;
}

#foot {
  width:850px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size:12px;
  font-weight:bold;
  color: #ba364b;
  text-align:center;
  position: absolute;
  margin-top: 20px;
  padding: 15px;
}

body::-webkit-scrollbar {
  width: 12px;               /* width of the entire scrollbar */
}

body::-webkit-scrollbar-track {
  background: #e1ffca;        /* color of the tracking area */
}

body::-webkit-scrollbar-thumb {
  background-color: #ba364b;    /* color of the scroll thumb */
  border-radius: 20px;       /* roundness of the scroll thumb */
  border: 3px solid #e1ffca;  /* creates padding around scroll thumb */
}