2021-10-02 11:13:13 -07:00
|
|
|
/* home.css */
|
|
|
|
|
2021-10-06 09:25:23 -07:00
|
|
|
:root {
|
|
|
|
--link-color: #3486ff;
|
|
|
|
}
|
|
|
|
|
2021-10-05 08:28:28 -07:00
|
|
|
main a {
|
2021-10-06 09:25:23 -07:00
|
|
|
color: var(--link-color);
|
2021-10-05 08:28:28 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
main a:hover {
|
|
|
|
color: ver(--fog);
|
2021-10-06 09:25:23 -07:00
|
|
|
border-bottom: 1px solid var(--link-color);
|
2021-10-05 08:28:28 -07:00
|
|
|
}
|
|
|
|
|
2021-10-06 09:25:23 -07:00
|
|
|
h1,
|
|
|
|
h2,
|
|
|
|
h3 {
|
|
|
|
margin-top: 4rem;
|
|
|
|
margin-bottom: 0.7rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
h1 {
|
|
|
|
font-size: 5rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
h2 {
|
|
|
|
font-size: 3rem;
|
2021-10-02 11:13:13 -07:00
|
|
|
}
|
|
|
|
|
2021-10-06 09:25:23 -07:00
|
|
|
#homepage-content {
|
|
|
|
margin-bottom: 2em;
|
2021-10-02 11:13:13 -07:00
|
|
|
}
|
|
|
|
|
2021-10-06 09:25:23 -07:00
|
|
|
p:first-child {
|
2021-10-02 11:13:13 -07:00
|
|
|
margin-top: 0;
|
|
|
|
}
|
|
|
|
|
2021-10-06 09:25:23 -07:00
|
|
|
p {
|
|
|
|
margin-top: 2rem;
|
2021-10-02 11:13:13 -07:00
|
|
|
}
|