You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

77 lines
1.1 KiB
CSS

6 years ago
@font-face {
font-family: "Vegur Regular";
src: url("fonts/Vegur-Regular.otf");
}
@font-face {
font-family: "Vegur Light";
src: url("fonts/Vegur-Light.otf");
}
6 years ago
html {
6 years ago
background-color: #9200e5;
background-image: url("img/iris.jpg");
background-repeat: no-repeat;
background-position: center;
background-size: 100%;
background-attachment: fixed;
6 years ago
font-size: 16px;
@media (max-width: 1000px) {
font-size: calc(12px + .4vw);
}
}
6 years ago
body {
text-align: center;
6 years ago
max-width: 800px;
margin: 0 auto;
6 years ago
font-size: 1.5rem;
font-family: "Vegur Regular", sans-serif;
color: #ffffff;
6 years ago
}
6 years ago
.box {
6 years ago
display: flex;
flex: 1 1 auto;
flex-direction: column;
text-align: center;
align-items: center;
justify-content: center;
height: 12rem;
6 years ago
}
6 years ago
h1 {
6 years ago
font-size: 6rem;
letter-spacing: -0.2rem;
line-height: 5rem;
6 years ago
}
h2 {
6 years ago
font-size: 3rem;
font-family: "Vegur Light";
letter-spacing: -0.1rem;
6 years ago
}
header p {
font-size: 2rem;
}
header p.italic {
font-style: italic;
}
6 years ago
main p {
line-height: 3rem;
}
.blink {
animation: blinker 1s step-end infinite;
}
@keyframes blinker {
50% {
opacity: 0;
}
6 years ago
}