
body {
  width: 80%;
  color: black;
  font-family: 'LucidaGrande';
  font-size: 16px;
  margin-left: 13%;
  line-height: 1.5em;
  background-image: url("/john-towner-unsplash.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 25px;
  }
  
.header {
  left:-1px;
  position: fixed;
  margin: 0px;
  width: 80;
  height: 80px;
  overflow: hidden;
  background-color: transparent;
  padding: 5px;
  border-radius: 25px;
  color: black;
  text-transform: uppercase;
  line-height: 1.5em;
}

.header a {
  float: left;
  font-family: 'CatchyMager';
  text-transform: uppercase;
  color: black;
  text-decoration: none;
  padding: 5px;
  font-size: 12px; 
  line-height: 5px;
  border-radius: 4px;
}

@media screen and (max-width: 500px) {
  .header a {
    float: none;
    display: block;
    text-align: left;
  }
  
  .header-right {
    float: none;
  }
}

@font-face {
  font-family: 'LucidaGrande';
  src: url(/fontfolder/LucidaGrande.ttf);
}

@font-face {
  font-family: 'CatchyMager';
  src: url(/fontfolder/CatchyMager.ttf);
}
@font-face {
  font-family: 'tomatoes';
  src: url(https://fogsrollingin.neocities.org/fontfolder/tomatoes.ttf);
  }

@font-face {
  font-family: 'lora';
  src: url(https://fogsrollingin.neocities.org/fontfolder/Lora-Regular.ttf);
  }
  
@font-face {
  font-family: 'LucidaGrandeBold';
  src: url(/fontfolder/LucidaGrandeBold.ttf);
  }
  

b, strong {
  font-family: 'Helvetica';
   }

h1{
  font-family: 'CatchyMager';
  font-weight: normal;
}

h2{
  font-family: 'Lora';
   font-weight: normal;
   text-transform: uppercase;
}

h3 {font-family: 'lora';}

blockquote {
  background: white;
  border-left: 10px solid #2E4D92;
  margin: 1.5em 10px;
  padding: 0.5em 10px;
  quotes: "\201C""\201D""\2018""\2019";
}
blockquote:before {
  color: #2E4D92;
  content: open-quote;
  font-size: 4em;
  line-height: 0.2em;
  margin-right: 0.25em;
  vertical-align: -0.4em;
  padding: 0.5em 10px;
}
blockquote p {
  display: inline;
}

/* How to create vertical tabs and also embedded box content*/

* {box-sizing:border-box;
  }
  
embed:focus {
  outline: none;
}

/* The sidebar menu */
.sidenav {
  width: 10%; /* Set the width of the sidebar */
  position: fixed; /* Fixed Sidebar (stay in place on scroll) */
  z-index: 1; /* Stay on top */
  top: 2%; /* Stay at the top */
  left: 2%;
  overflow-x: hidden; /* Disable horizontal scroll */
  margin-top: 3%;
  padding-top: 20px;
  padding-bottom: 20px;
  border-radius: 25px;
  display: block;
}

/* Style the buttons that are used to open the tab content*/ 
.sidenav a {
  margin-top: 10px;
  display: block;
  background: rgba(245,245,245, 0.7);
  color: black;
  padding: 15px 15px;
  width: 100%;
  border: none;
  outline: none;
  text-align: left;
  font-size: 18px;
  cursor: pointer;
  border-radius: 25px;
  text-decoration: none;
  font-family: 'Lora';
  font-weight: normal;
  text-transform: uppercase;
}

/* When you mouse over the navigation links, change their color */
.sidenav a:hover {
  color: #5A5A5A;
  background-color: white;
}

/* Style page content */
.main {
  margin-top: 20px;
  margin-left: 0%; /* Same as the width of the sidebar */
  padding: 10px 10px 10px;
  background-color: rgba(245,245,245, .8);
  border-radius: 25px;
  height: 75%;
  overflow: auto;
}

/* On smaller screens, where height is less than 450px, change the style of the sidebar (less padding and a smaller font size) */
@media screen and (max-height: 450px) {
  .sidenav {padding-top: 15px;}
  .sidenav a {font-size: 18px;}
}

/*TAB MENU STYLING FOR MY FIC MASTERPOST PAGE*/

.tab {
   overflow: hidden;
   border-radius: 25px;
}

.tab button {
   background-color: inherit;
   float: none;
   cursor: pointer;
   padding: 14px 16px;
   font-size: 18px;
   font-family: 'Lora';
   font-weight: normal;
   text-transform: uppercase;
   border: #de5d83;
   border-radius: 25px;
   transition: 0.3s;
}
.tab button:hover {
   background-color: white;
   color: #5A5A5A;
}
.tab button.active {
   background-color: white;
}
.demo2 {
  display: none;
  padding: 3px 12px;
}

/*ACCORDION FOR IN RECS*/

.accordion {
  color: black;
  cursor: pointer;
  padding: 10px;
  width: 100%;
  border: none;
  text-align: center;
  outline: none;
  font-size: 15px;
  border-radius: 25px;
  transition: 0.4s;
}

.active, .accordion:hover {
  background-color: #ccc;
}

.panel {
  padding: 0 18px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

/*TWO COLUMN LAYOUT*/

* {
  box-sizing: border-box;
}

/* Create two equal columns that floats next to each other */
.column2 {
  float: left;
  width: 50%;
  padding: 10px;
  font-size: 16px;
}

/* Clear floats after the columns */
.row2:after {
  content: "";
  display: table;
  clear: both;
}

/*THREE COLUMN LAYOUT*/

* {
  box-sizing: border-box;
}

/* Create three equal columns that floats next to each other */
.column {
  float: left;
  width: 33.33%;
  padding: 10px 10px 10px;
  background-color: rgba(245,245,245, 0.7);
  border-radius: 25px;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
  font-size: 16px;
}

/*Responsive layout - when the screen is less than 600px wide, make the three columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .column {
  width: 100%;
}}

