2024-01-23 21:37:24 +13:00
|
|
|
/* http://meyerweb.com/eric/tools/css/reset/
|
|
|
|
v2.0 | 20110126
|
|
|
|
License: none (public domain)
|
|
|
|
*/
|
|
|
|
|
2024-01-24 20:17:59 +13:00
|
|
|
html,
|
|
|
|
body,
|
|
|
|
div,
|
|
|
|
span,
|
|
|
|
h1,
|
|
|
|
h2,
|
|
|
|
h3,
|
|
|
|
h4,
|
|
|
|
h5,
|
|
|
|
h6,
|
|
|
|
p,
|
|
|
|
a,
|
|
|
|
code,
|
|
|
|
img {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
border: 0;
|
2024-01-23 21:37:24 +13:00
|
|
|
outline: none;
|
|
|
|
text-decoration: none;
|
2024-01-24 20:17:59 +13:00
|
|
|
font-size: 100%;
|
|
|
|
font: inherit;
|
|
|
|
vertical-align: baseline;
|
2024-01-23 21:37:24 +13:00
|
|
|
}
|
|
|
|
|
|
|
|
/* boring text stuff */
|
|
|
|
|
|
|
|
h1 {
|
|
|
|
font-size: 2.5em;
|
|
|
|
}
|
|
|
|
|
2024-01-24 20:17:59 +13:00
|
|
|
h2,
|
|
|
|
button {
|
2024-01-23 21:37:24 +13:00
|
|
|
font-size: 2em;
|
|
|
|
}
|
|
|
|
|
|
|
|
h3 {
|
|
|
|
font-size: 1.5em;
|
|
|
|
}
|
|
|
|
|
|
|
|
h4 {
|
|
|
|
font-size: 1.2em;
|
|
|
|
}
|
|
|
|
|
|
|
|
h5 {
|
|
|
|
font-size: 0.9em;
|
|
|
|
}
|
|
|
|
|
|
|
|
h6 {
|
|
|
|
font-size: 0.7em;
|
|
|
|
}
|
|
|
|
|
2024-01-24 20:17:59 +13:00
|
|
|
h1,
|
|
|
|
h2,
|
|
|
|
h3,
|
|
|
|
h4,
|
|
|
|
h5,
|
|
|
|
h6,
|
2024-01-23 21:37:24 +13:00
|
|
|
p {
|
|
|
|
font-family: "Montserrat";
|
2024-01-24 20:17:59 +13:00
|
|
|
font-weight: 600;
|
2024-01-23 21:37:24 +13:00
|
|
|
color: #FFFFFF;
|
2024-01-24 20:17:59 +13:00
|
|
|
text-align: center;
|
2024-01-23 21:37:24 +13:00
|
|
|
}
|
|
|
|
|
2024-01-24 20:17:59 +13:00
|
|
|
/* real styling begins */
|
2024-01-23 21:37:24 +13:00
|
|
|
body {
|
|
|
|
background: #060008;
|
|
|
|
line-height: 1.8;
|
|
|
|
max-width: 70vw;
|
|
|
|
margin: auto;
|
|
|
|
}
|
|
|
|
|
2024-01-24 20:17:59 +13:00
|
|
|
.star {
|
|
|
|
color: #CBD7F1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.light {
|
|
|
|
color: #FEFDC1;
|
|
|
|
}
|
2024-01-23 21:37:24 +13:00
|
|
|
|
|
|
|
.buttons {
|
2024-01-24 20:17:59 +13:00
|
|
|
text-align: center;
|
2024-01-23 21:37:24 +13:00
|
|
|
margin-top: 10px;
|
|
|
|
}
|
2024-01-24 20:17:59 +13:00
|
|
|
|
2024-01-23 21:37:24 +13:00
|
|
|
.buttons>a {
|
|
|
|
margin-right: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
hr {
|
|
|
|
border: 0;
|
|
|
|
height: 3px;
|
|
|
|
width: 35vw;
|
2024-01-24 20:17:59 +13:00
|
|
|
margin: 10px auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes movinggradient {
|
|
|
|
from {
|
|
|
|
background-position: 35vw;
|
|
|
|
}
|
|
|
|
|
|
|
|
to {
|
|
|
|
background-position: 0px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.movinggradient {
|
|
|
|
background-image: repeating-linear-gradient(to left, #4b4b88, #4b884b, #88884b, #885F4B, #884b4b, #4b4b88);
|
2024-01-23 21:37:24 +13:00
|
|
|
background-position: 0px;
|
|
|
|
animation: movinggradient 1s linear infinite;
|
2024-01-24 20:17:59 +13:00
|
|
|
}
|