website: logo

This commit is contained in:
Elysia 2025-11-02 15:34:35 +00:00
parent 913b558ebf
commit fd2faa3661
5 changed files with 37 additions and 8 deletions

View file

@ -17,9 +17,9 @@
}
@font-face {
font-family: 'CynthoExtraBold';
font-family: 'CynthoExtraLight';
src:
url('/static/font/CynthoNextExtraBold.otf') format('opentype');
url('/static/font/CynthoNextExtraLight.otf') format('opentype');
font-weight: 900;
font-style: normal;
@ -82,3 +82,10 @@ img {
align-items: center;
width: 650px;
}
.container {
display: flex; /* places items in a row */
align-items: center; /* vertically centers image and text */
justify-content: center; /* centers the whole thing horizontally */
gap: 10px; /* space between image and text */
}