added default font

This commit is contained in:
jpez 2022-03-04 20:06:43 +00:00
parent b0d09985fb
commit 14d49cacd6
4 changed files with 11 additions and 2 deletions

Binary file not shown.

View File

@ -46,6 +46,7 @@
.generalInfo > span {
display: flex;
align-items: center;
font-size: x-large;
margin-top: -2em;
}

View File

@ -25,7 +25,8 @@
</nav>
<main>
<h1>Welcome to my little corner of the internet :)</h1>
<h1>Welcome to my little corner of the Internet :)</h1>
</main>
<aside class="bio">

View File

@ -3,7 +3,8 @@ body {
background-color: transparent;
background-image: url("../assets/images/background.jpg");
background-size: cover;
font-family: body;
display: grid;
grid-template-columns: 20% 40% 40%;
grid-template-rows: 20% 60% 20%;
@ -15,6 +16,7 @@ body {
footer {
grid-area: footer;
color: #e5e5e5;
}
main {
@ -94,3 +96,8 @@ main {
font-family: headers;
src: url(../assets/fonts/game_over.woff);
}
@font-face {
font-family: body;
src: url("../assets/fonts/AmaticSC-Regular.woff");
}