25 lines
380 B
Svelte
25 lines
380 B
Svelte
<!-- Theme load -->
|
|
<svelte:head>
|
|
<script>
|
|
</script>
|
|
|
|
</svelte:head>
|
|
|
|
<div class="main-title">
|
|
<h1>The Deprived Devs</h1>
|
|
</div>
|
|
|
|
|
|
<style>
|
|
.main-title {
|
|
font-family: "CozetteVector";
|
|
margin: 0 auto;
|
|
width: 80%;
|
|
text-align: center;
|
|
}
|
|
|
|
.main-title > h1 {
|
|
font-size: 4.5vw; /* Change if title changes */
|
|
}
|
|
</style>
|