
*, *:after, *:before {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html, body {
    height: 100%;
}
html {
    overflow-x: hidden;
    overflow-y: auto;
}

ul, ol, dl {
    margin: 0;
    padding: 0;
    line-height: 1.2;
    list-style: none;
    list-style-image: none;
}

a {
    color: #222;
    text-decoration: none;
    background-color: hotpink;
    background-image: url('halftone-side.png');
    background-position: right bottom;
    background-repeat: no-repeat;
    border-radius: 10px;
    display: block;
    width: 320px;
    padding: 10px;
    margin: 0 auto;
}

a:hover {
    color: #222;
    text-decoration: none;
    background-color: rgb(253, 137, 191);
}

body {
    font: 18px "Segoe UI", Helvetica, Arial, sans-serif;
    background: rgb(44, 43, 43);
    color: #fafafa;
    cursor: default;
}

header {
	display: block;
    margin: 0 auto;
    width: 320px;	
    text-align: center;
}

h1 {
    color: hotpink;
}


li {
    margin-bottom: 24px;
}

ul {
    margin-top: 20px;
}