48 lines
774 B
CSS
48 lines
774 B
CSS
@import url('https://fonts.googleapis.com/css2?family=Noto+Color+Emoji&display=swap');
|
|
|
|
.no-emoji {
|
|
font-family: monospace;
|
|
}
|
|
|
|
body {
|
|
background: black;
|
|
color: greenyellow;
|
|
font-family: monospace;
|
|
font-size: 24px;
|
|
}
|
|
|
|
footer {
|
|
text-align: center;
|
|
}
|
|
|
|
h1:not(.no-emoji), nav>a {
|
|
font-family: 'Noto Color Emoji', monospace;
|
|
}
|
|
|
|
header {
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
text-align: center;
|
|
}
|
|
|
|
main {
|
|
background: darkslategrey;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
padding-bottom: 20px;
|
|
padding-top: 20px;
|
|
text-align: center;
|
|
width: 75%;
|
|
}
|
|
|
|
nav {
|
|
align-items: center;
|
|
display: flex;
|
|
justify-content: center;
|
|
position: relative;
|
|
}
|
|
|
|
nav>a {
|
|
font-size: 70px;
|
|
text-decoration: none;
|
|
} |