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.

36 lines
411 B
CSS

6 years ago
html {
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
.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 {
font-size: 4rem;
}
h2 {
font-size: 2rem;
}
body {
font-size: 1rem;
6 years ago
}