/* 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:#fff;
  background-image: url(rocks.png);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 12px;
}

a {
  color: #c4c4c4;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
  background-color: #b8b8b8;
  color: transparent;
  text-shadow: -2px -2px 3px rgba(255, 255, 255,0.4), 1px 1px 0px rgba(79, 79, 79, 0.8);
  -webkit-background-clip: text;
     -moz-background-clip: text;
          background-clip: text;
}

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: 'Concert One', cursive;
  font-size: 50px;
  font-weight: 900;
  text-align: center;
  background-color: #b8b8b8;
  color: transparent;
  text-shadow: -2px -2px 3px rgba(255, 255, 255,0.4), 1px 1px 0px rgba(79, 79, 79, 0.8);
  -webkit-background-clip: text;
     -moz-background-clip: text;
          background-clip: text;
}

p {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 13px;
}

b, strong {
   color: #ba364b;
   }

#content {
  width: 500px;
  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: transparent;
  border: 0px 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: #b8b8b8;    /* color of the scroll thumb */
  border-radius: 20px;       /* roundness of the scroll thumb */
  border: 3px solid #e1ffca;  /* creates padding around scroll thumb */
}