body {
    background: #a8a9ab url("Images/halftone.jpg") right top;
    background-size: 1280px 800px;
    background-attachment:fixed;
    font-family: BankPrinterRegular, Verdana, sans-serif;
    color: black;
    font-size: smaller;
    overflow-wrap: break-word;
    hyphens: auto;
}

.box{
    max-width: 900px;
    margin-top: 1px;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-gap: 10px;
    grid-template-columns: 0.3fr 1fr 0.5fr;
    
}

.box2{
    max-width: 900px;
    margin-top: 1px;
    margin-left: 95px;
    margin-right: auto;
    display: grid;
    grid-gap: 10px;
    grid-template-columns: 0.3fr 0.5fr 0.5fr 0.5fr;
}

header, nav-bar1, nav-bar2, nav-bar3, nav, main, footer{
    border-radius: 0.5rem;
    padding: 5px;
}

header{
    grid-row: 1 / 2;
    grid-column: 1 / 4;
}

nav-bar1{
    grid-row: 2 / 3;
    grid-column: 2 / 3;
    height: max-content;
    transform: rotate(5deg)
}

.graphicstitle {
  position: relative;
  width: 50%;
}
.graphicsyellow {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: .1s ease;
}
.graphicstitle:hover .graphicsyellow {
  opacity: 1;
}


nav-bar2{
    grid-row: 2 / 3;
    grid-column: 3 / 4;
    height: max-content;
    transform: rotate(-2deg)
}

.zinestitle {
  position: relative;
  width: 50%;
}
.zinesyellow {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 13;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: .1s ease;
}
.zinestitle:hover .zinesyellow {
  opacity: 1;
}

nav-bar3{
    grid-row: 2 / 3;
    grid-column: 4 / 5;
    height: max-content;
    transform: rotate(-3deg)
}


.photographyyellow {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
}


nav{
    grid-row: 3 / 4;
    grid-column: 1 / 2;
    height: max-content;
    background-image: url(Images/background.jpg);
    background-size: 400px;
    background-position: top right
}

main{
    grid-row: 3 / 5; 
    grid-column: 2 / 5;
    height: max-content;
    background-image: url(Images/background.jpg);
    background-size: 450px;
}

footer{
    grid-row: 5 / 6;
    grid-column: 1 / 4;
}

.footer {
  text-align: center;
}
.footertext{
    display: flex;
  justify-content: center;
  align-items: center;
    font-size: smaller;
}

ul li::marker {
    content: none
}

ul {
    padding-left: 10px;
}

a:link {
    text-decoration: none;
    color: black;
}

a:visited {
    color: black;
}

a:hover {
    color: #ffea00;
}

mark {
    background-color: #ffea00;
}

@font-face {
    font-family: 'BankPrinterRegular';
        src: url(fonts/F25_Bank_Printer.ttf);
}

@font-face {
    font-family: 'BankPrinterBold';
        src: url(fonts/F25_Bank_Printer_Bold.ttf);
}