Oops, forgot css file

This commit is contained in:
Matthew Holt 2020-05-02 23:33:28 -06:00
parent f181d98e38
commit 144a639efc
No known key found for this signature in database
GPG key ID: 2A349DD577D586A5

View file

@ -0,0 +1,40 @@
h1 {
font-family: Montserrat, sans-serif;
font-weight: normal;
font-size: 80px;
text-align: center;
margin: 100px auto;
}
.panels {
display: flex;
}
.panels > * {
flex: 1;
margin: 0 50px;
}
.panels > :first-child {
margin-left: 0;
}
p {
margin: 1em 0;
line-height: 1.5em;
}
@media (max-width: 900px) {
h1 {
font-size: 50px;
margin: 50px auto;
}
.panels {
flex-direction: column-reverse;
}
.panels > * {
margin: 30px 0;
}
}