2020-08-05 05:45:05 +00:00
|
|
|
.header {
|
|
|
|
|
display: flex;
|
2020-08-17 23:46:13 +00:00
|
|
|
min-height: 100px;
|
2020-08-05 05:45:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.title {
|
2020-08-06 02:04:02 +00:00
|
|
|
font-size: var(--font-size-large);
|
2020-08-05 05:45:05 +00:00
|
|
|
}
|
|
|
|
|
|
2020-08-17 23:46:13 +00:00
|
|
|
.logo {
|
|
|
|
|
margin-right: 12px;
|
|
|
|
|
}
|
|
|
|
|
|
2020-08-05 05:45:05 +00:00
|
|
|
.nav {
|
|
|
|
|
display: flex;
|
2020-09-20 09:54:38 +00:00
|
|
|
justify-content: center;
|
2020-08-05 05:45:05 +00:00
|
|
|
align-items: center;
|
2020-09-09 23:12:29 +00:00
|
|
|
font-size: var(--font-size-normal);
|
|
|
|
|
font-weight: 600;
|
2020-08-05 05:45:05 +00:00
|
|
|
}
|
|
|
|
|
|
2020-09-20 18:28:38 +00:00
|
|
|
.nav a + a {
|
|
|
|
|
margin-left: 40px;
|
2020-08-05 05:45:05 +00:00
|
|
|
}
|
2020-08-07 05:03:02 +00:00
|
|
|
|
2020-09-20 09:54:38 +00:00
|
|
|
.buttons {
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: flex-end;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media only screen and (max-width: 992px) {
|
2020-08-17 23:46:13 +00:00
|
|
|
.title {
|
|
|
|
|
text-align: center;
|
|
|
|
|
}
|
2020-09-20 09:54:38 +00:00
|
|
|
|
|
|
|
|
.nav {
|
|
|
|
|
font-size: var(--font-size-large);
|
|
|
|
|
justify-content: center;
|
|
|
|
|
padding: 20px 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.buttons {
|
|
|
|
|
justify-content: center;
|
|
|
|
|
}
|
2020-08-07 05:03:02 +00:00
|
|
|
}
|