23 lines
380 B
SCSS
23 lines
380 B
SCSS
@import '../colors.scss';
|
|
|
|
.App-header {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-size: calc(10px + 2vmin);
|
|
margin-top: 2rem;
|
|
gap: 1rem;
|
|
|
|
h1 {
|
|
color: $green-text !important;
|
|
text-transform: uppercase;
|
|
font-size: 3rem;
|
|
font-family: 'Montserrat-Light';
|
|
|
|
span {
|
|
color: $brown-text;
|
|
font-size: 0.5em;
|
|
}
|
|
}
|
|
}
|