body{
margin:0;
font-family:Arial, sans-serif;
text-align:center;
background:#ffffff;
}

.poster{
width:100%;
display:block;
}

.menu{
padding:30px 20px;
}


button{
display:block;
width:90%;
max-width:350px;
margin:20px auto;
padding:18px;
font-size:20px;

background:#d9d9d9;
color:black;

border:3px solid #333;
border-radius:0;

box-shadow:
inset 2px 2px 0 #ffffff,
inset -2px -2px 0 #888;

cursor:pointer;

font-family:Arial, sans-serif;
font-weight:bold;
}

button:focus{
outline:2px dashed #444;
outline-offset:-6px;
}

button:active{
box-shadow:
inset -2px -2px 0 #ffffff,
inset 2px 2px 0 #888;
}

button:hover{
background:#333;
}