@font-face {
  font-family: 'Drippy';
  src: url('DrippyMessage-Regular.ttf') format('truetype');
}

*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{

background:
linear-gradient(rgba(255,255,255,0.90), rgba(255,255,255,0.90)),
url("09d0d1fc29103ba4fbd9db93f85323ef.jpg");

background-size:cover;
background-position:center;
background-attachment:fixed;

font-family:'Drippy', monospace;
color:#111;

min-height:100vh;

display:flex;
flex-direction:column;
align-items:center;
justify-content:center;

text-align:center;
padding:20px;
}

/* main column */

.container{
max-width:420px;
width:100%;
}

/* title */

h1{
font-size:2.4rem;
margin-bottom:18px;
letter-spacing:2px;
}

/* nav */

nav a{
display:block;
font-size:1.1rem;
margin:6px 0;
color:#111;
text-decoration:none;
}

nav a:hover{
opacity:.6;
}

/* content sections */

.section{
margin-top:40px;
font-size:1rem;
line-height:1.6;
}

.section-title{
margin-bottom:10px;
font-weight:bold;
}

/* footer */

.footer{
margin-top:40px;
font-size:.9rem;
opacity:.6;
}

body::after {

  content: "";
  position: fixed;
  inset: 0;

  background: url("grain.png");
  opacity: .05;

  pointer-events: none;

}

