/* =========================================
RESET
========================================= */

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

/* =========================================
BODY
========================================= */

body{

background:#000;
color:#ffffff;

font-family:'VT323', monospace;

}

/* =========================================
TITLE
========================================= */

h1{

text-align:center;

font-size:56px;

font-weight:normal;

margin-top:30px;

margin-bottom:30px;

}

/* =========================================
POETRY LIST
========================================= */

.poetry-list{

width:700px;

margin:0 auto;

font-size:38px;

line-height:1.45;

}

.poetry-list li{

text-align:center;

margin-bottom:8px;

}

.poetry-list a{

color:white;

text-decoration:none;

transition:.25s;

}

.poetry-list a:hover{

color:#d5b9ff;

text-decoration:underline;

}