/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

/*
* {
  box-sizing: border-box;
}
*/

@font-face {
    font-family: 'Staatliches';
    src: url(https://pigeonsite.neocities.org/font_folder/staatliches-regular-webfont.woff);
}

body {
  background-color: #F0BB46;
  color: white;
  /*background-image: url("/neocities.png");*/
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
}
section{
  
}

.-divider{
  font-size: 20px;
  padding: 0;
  margin: 0;
}

.navtext{
  font-size: 30px;
  margin: 0;
  padding: 0;
  border: 0px solid #FCD08D;
}

.sidenav {
  height: 100%;
  width: 270px;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: #DEA44E;
  overflow-x: hidden;
  font-family: 'Staatliches';
  font-size: 20px;
}


/* Side navigation links */
.sidenav a {
  color: white;
  padding: 4px;
  margin: 10px;
  text-decoration: none;
  display: block;
  border: 4px solid #FCD08D;
}

/* Change color on hover */
.sidenav a:hover {
  background-color: #ddd;
  color: black;
}

/* Style the content */
.content {
  margin-left: 270px;
  padding-left: 10px;
}

h1 {
  color: white;
  text-align: center;
  background-color: DodgerBlue;
  border:4px solid white;
  
}

p {
  font-family: verdana;
  font-size: 20px;
}

div {
  /*background-color: lightblue;*/
}