/* 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." */
@font-face {
  font-family: 'Stamp Act';
  src: url('fonts/STAMPACT.ttf'), format("ttf");
  font-weight: bold;
}
@font-face {
  font-family: 'Dirty Headline';
  src: url('fonts/Dirty_Headline.ttf'), format("ttf");
}
@font-face {
 font-family: 'F25 Bank Printer';
 src: url('fonts/F25_Bank_Printer.ttf'), format("ttf");
}
h1 {
    font-family: 'Stamp Act', sans-serif;
    color:rgb(0, 0, 0);
    font-size: 35px;
    text-align: center;
    margin: 20px 150px;
}
h2 {
    font-family: 'Dirty Headline', cursive;
    color:rgb(0, 0, 0);
    text-align: center;
    margin: 20px 300px;
    border-color: rgba(5, 2, 2, 0.7);
    border-width: 10px;
    border-style: solid;
    padding: 10px;
}
p {
    font-family: 'F25 Bank Printer', sans-serif;
    color:rgb(0, 0, 0);
    margin: 5% 5%;
    letter-spacing: -1.5px;
    line-height: 2;
}
main {
    background-image: url('img/stock_photo_paper.jpg');
    width: 800px;
    height: 100%;
    margin: 0 100px;
    padding: 20px;
    border-width: 10px;
    border-color:antiquewhite;
    border-style:groove;
    align-items: flex-start;
}
body {
    background-color: #6e031c;
    position: relative;
}
body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('img/old_TV_crashed_screen.gif');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    opacity: 0.6;
    z-index: -1;
}
body {
    cursor: url('cursor.cur'), auto;
}
a {
    color: #770000;
    text-decoration-style:dotted;
}

.entry {
  margin: 0px 0px;
}
.Jrn {
 padding: 50px;
 margin-left: 5.5%
}
.txt {
  margin: 40px auto;
}
.collapsible {
  background-color: rgba(0, 0, 0, 0);
  font-family: 'F25 Bank Printer', courier, monospace;
  font-size: 16px;
  color: rgba(0, 0, 0, 1);
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
}
.content {
  padding: 0 18px;
  display: none;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0);
}