2024-02-12 11:12:15 -06:00
|
|
|
/*
|
|
|
|
This page applies to any page on the site EXCEPT
|
|
|
|
the main page. Please only make changes here if you
|
|
|
|
want to modify the CSS of ALL subpages.
|
|
|
|
*/
|
|
|
|
|
|
|
|
h1:nth-of-type(1) {
|
|
|
|
font-size: 2.5rem;
|
2024-04-16 14:25:15 -05:00
|
|
|
|
2024-02-12 11:12:15 -06:00
|
|
|
}
|
|
|
|
|
2024-03-03 23:57:30 -06:00
|
|
|
body {
|
|
|
|
padding: 5vh 0;
|
|
|
|
}
|
|
|
|
|
2024-04-17 09:33:05 -05:00
|
|
|
.mainDiv {
|
2024-03-08 10:49:47 -06:00
|
|
|
animation: fadeUp 1s cubic-bezier(0.075, 0.82, 0.165, 1);
|
2024-04-17 09:33:05 -05:00
|
|
|
padding: 0 2.5vw;
|
|
|
|
max-width: 800px;
|
|
|
|
margin: auto;
|
2024-02-12 11:12:15 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes fadeUp {
|
|
|
|
0% {
|
|
|
|
transform: translateY(50vw);
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
100% {
|
|
|
|
transform: none;
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
}
|