32m/style.css

52 lines
643 B
CSS

:root {
--red: #A12626;
}
body {
font-family: 'Concourse OT';
color: var(--red);
max-width: 785px;
margin: 250px;
}
p {
font-size: 36px;
margin: 1rem 0;
}
img {
display: inline;
height: 45px;
margin-right: 0.5rem;
}
address * {
font-style: normal;
font-size: 24px;
}
ul li span {
font-weight: bold;
}
a {
text-decoration: none;
color: var(--red);
}
a:hover, a:focus {
text-decoration: underline;
}
@media (max-width: 480px) {
body {
margin: 80px 50px
}
p { font-size: 24px }
img {
display: block;
margin-bottom: 1rem;
}
}