@import url('https://fonts.googleapis.com/css2?family=Cutive+Mono&display=swap');

.cutive-mono-regular {
  font-family: "Cutive Mono", monospace;
  font-weight: 400;
  font-style: normal;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
  }

* {
  margin:0;
  padding:0;
  }

body {
  background-color:#191717;
  background-image:url('/images/bg-01.jpg');
  background-size: 512px 512px;
  background-position:center center;
  background-attachment: fixed;
  color:#fff5e9;
  font-family: "Cutive Mono", monospace;
  font-weight: 400;
  font-style: normal;
  letter-spacing: -0.5px;
  overflow-x: hidden;
}

figure {
  float:left;
  margin-right:16px;
	margin-bottom:16px;
	width:191px;
	transition:all 0.25s cubic-bezier(0.108, -0.002, 0.018, 0.985);
  }
  
figcaption {
  white-space: normal;
  font-size:0.6em;
  opacity:0.2;
  width:100%;
  margin-top:8px;
  font-style:italic;
  transition:all 0.25s cubic-bezier(0.108, -0.002, 0.018, 0.985);
  }

  
figure:hover {
  width:100%;
  }
  
figure:hover figcaption {
  font-size:0.7em;
  opacity:1;
  margin-bottom:24px;
  }

a {
  color:#fff5e9;
  text-decoration-color:rgba(206, 37, 29, 0);
  transition:all 0.2s ease-in-out;
}

a:hover {
  text-decoration-color:rgba(206, 37, 29, 1);
  }
  
img {
  border-radius:4px;
}

.container {
  max-width:512px;
  margin-left:auto;
  margin-right:auto;
  padding:16px;
  padding-top:32px;
  overflow-x: hidden;
  }
  
nav {
  padding:16px;
  padding-bottom:48px;
  position:fixed;
  width:100%;
  background-color:#191717;
  background: linear-gradient(0deg,rgba(25, 23, 23, 0) 0%, rgba(25, 23, 23, 1) 75%);
  overflow-x: hidden;
  
  }
  
    
footer {
  padding:16px;
  padding-top:48px;
  background-color:#191717;
  background: linear-gradient(180deg,rgba(25, 23, 23, 0) 0%, rgba(25, 23, 23, 0.75) 100%);
  text-align:center;
  overflow-x: hidden;
  }
  
footer p {
  text-align:center;
  opacity:0.5;
  }
  
nav .logo, footer .logo {
  background-image: url('/logo-bpp.svg');
  background-size:contain;
  width:64px;
  height:64px;
  float:left;
  margin-right:16px;
  display:block;
  transform:rotate(180deg);
  transition: transform 0.5s cubic-bezier(1, 0, 0, 1);
  }

nav a {
  color:#fff5e9;
  text-decoration:none;
  transition: all 0.2s ease-in-out;
  }
  
nav h1, footer h1 {
  font-size: 1em;
  line-height:64px;
  display:inline;
  }

nav a:hover {
  opacity:0.5;
  }
  
nav a:hover .logo {
  transform:rotate(0deg);
  }
  
p {
  margin-bottom:16px;
  text-align:justify;  
  text-justify:inter-word;
  line-height:1.3em;
  font-size: 0.9em;
  word-spacing: -3px;
  }
  
h1 {
  font-size: 1.75em;
  }
  
h2 {
  padding-top:64px;
  padding-bottom:16px;
  font-size: 1.5em;
  text-transform:uppercase;
  letter-spacing:0.8px;
  }
  
.quote {
  border-left:#ce251d solid 1px;
  padding-left:16px;
  margin-bottom:16px;
  }

  
.credit {
  margin-top:16px;
  display:block;
  font-style:italic;
  }
  
.quote a:hover {
  text-decoration-color: rgba(206, 37, 29, 1);
  }
  
.list a {
  background-color:rgba(25, 23, 23, 1);
  padding:10px 30px;
  border-radius:4px;
  text-decoration: none;
  white-space: nowrap;
  border:1px solid #282524;
  transition:all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  text-transform:uppercase;
  font-size:0.8em;
}
.list a:hover {
  border:1px solid #fff5e9;
  background-color:rgba(25, 23, 23, 0);
  }


.list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom:48px;
  }

.long {
  display:inline;
  }
  
.short {
  display: none;
  }
  
.header {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 16px;
}

.image-header {
  width: 100%;
  opacity:0;
  animation: fadeUp 3s ease-in-out forwards;
  animation-delay:0.5s;
 
}

.header h1 {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}


@keyframes fadeUp {
  from {opacity:0;transform:translateY(32px);}
  to {opacity:1;transform:translateY(0px);}
}


  
@media only screen and (max-width: 500px) {
  nav h1, footer h1 {
    line-height:32px;
    }
  h2 {
    font-size: 1.25em;
    }
  nav .logo {
    width:32px;
    height:32px;
  }
  
  .long {
  display: none;
  }
  
.short {
  display:inline;
  }
  
figure {
  width:100%;
  }
}