33 lines
442 B
CSS
33 lines
442 B
CSS
body {
|
|
font-family: "PT Serif", serif;
|
|
font-size: 1.2em;
|
|
color: #555;
|
|
background: #afafaf;
|
|
}
|
|
|
|
h1 {
|
|
text-transform: uppercase;
|
|
text-align: center;
|
|
}
|
|
h1, h2{
|
|
color: #454545;
|
|
}
|
|
|
|
img {
|
|
border: 6px solid #dfdfdf;
|
|
border-radius: 5px;
|
|
width: 70%;
|
|
margin-left: 15%;
|
|
}
|
|
|
|
#container {
|
|
width: 36em;
|
|
margin: 2em;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
background: #fff;
|
|
padding: 3em;
|
|
border-radius: 3px;
|
|
box-shadow: 0 4px 5px 0 #555
|
|
}
|