2022-01-17 22:11:33 +00:00
|
|
|
a {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
2022-01-17 20:48:24 +00:00
|
|
|
body {
|
2022-01-17 22:11:33 +00:00
|
|
|
background-color: black;
|
|
|
|
color: white;
|
2022-01-17 20:48:24 +00:00
|
|
|
font-family: -apple-system, BlinkMacSystemFont, avenir next, avenir, segoe ui, helvetica neue, helvetica, Ubuntu, roboto, noto, arial, sans-serif;
|
|
|
|
}
|
|
|
|
|
2022-01-17 22:11:33 +00:00
|
|
|
nav {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.logo {
|
|
|
|
filter: invert(1) hue-rotate(180deg);
|
|
|
|
}
|
|
|
|
|
2022-01-17 20:48:24 +00:00
|
|
|
main {
|
2022-01-17 22:11:33 +00:00
|
|
|
margin: 0 24vw;
|
|
|
|
}
|
|
|
|
|
|
|
|
footer {
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
flex-direction: row;
|
|
|
|
gap: 10px;
|
2022-01-17 20:48:24 +00:00
|
|
|
}
|
|
|
|
|
2022-01-17 22:11:33 +00:00
|
|
|
@media only screen and (max-width: 812px) {
|
|
|
|
main {
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
footer {
|
|
|
|
flex-direction: column;
|
|
|
|
text-align: center;
|
|
|
|
}
|
2022-01-17 20:48:24 +00:00
|
|
|
}
|