42 lines
760 B
CSS
42 lines
760 B
CSS
:root {
|
|
--main-font-color: #dedede;
|
|
--main-bg-color: #2a2a2a;
|
|
--main-accent-color: #b28261;
|
|
--secondary-accent-color: #8f4040;
|
|
}
|
|
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
font-family: 'LeagueGothic', 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
|
|
color: var(--main-font-color);
|
|
letter-spacing: 1px;
|
|
}
|
|
|
|
@font-face {
|
|
font-family: 'LeagueGothic';
|
|
src: url('../fonts/LeagueGothic.ttf');
|
|
}
|
|
|
|
body {
|
|
background-color: var(--main-bg-color);
|
|
}
|
|
|
|
#header-img {
|
|
width: 100vw;
|
|
height: 25vh;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
padding-top: 5vh;
|
|
padding-bottom: 5vh;
|
|
}
|
|
|
|
#header-img img {
|
|
max-width: 100%;
|
|
max-height: 100%;
|
|
}
|
|
|
|
#content {
|
|
text-align: center;
|
|
} |