48 lines
727 B
CSS
48 lines
727 B
CSS
@font-face {
|
|
font-family: "hermit-bold";
|
|
src: url("./Hermit-Bold.otf") format("opentype");
|
|
}
|
|
|
|
body {
|
|
background-color: black;
|
|
color: red;
|
|
font-family: "hermit-bold";
|
|
text-align: center;
|
|
background-image: url("./blooddrip.png");
|
|
background-repeat: no-repeat;
|
|
background-attachment: fixed;
|
|
background-size: 75%;
|
|
background-position: 150% 0%;
|
|
}
|
|
|
|
nav {
|
|
text-align: center;
|
|
}
|
|
|
|
a {
|
|
color: red;
|
|
text-decoration: none;
|
|
}
|
|
|
|
a:hover {
|
|
color: green;
|
|
}
|
|
|
|
nav a {
|
|
font-size: 2.5rem;
|
|
margin: 0 2rem 0 2rem;
|
|
}
|
|
|
|
.logo {
|
|
display: block;
|
|
margin: auto;
|
|
width: 15%;
|
|
height: auto;
|
|
}
|
|
|
|
.title {
|
|
display: block;
|
|
margin: auto;
|
|
width: 15%;
|
|
height: auto;
|
|
} |