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.

23 lines
377 B
CSS

/* Header */
.header {
display: flex;
justify-content: center;
align-items: center;
background-color: #1a1a1a;
flex-wrap: wrap;
}
/* Header A */
.header a {
font-family: neon;
text-decoration: none;
padding: 20px;
}
/* Small Screens */
@media screen and (max-width: 1027px) {
/* Header */
.header {
flex-direction: column;
}
}