www/src/components/IntroText.svelte
2024-03-13 23:07:03 -04:00

24 lines
466 B
Svelte

<div class="introText">
<p>
The FemtoStar Project is a global community developing a satellite
constellation for secure, open, and private communications - anywhere on
planet Earth.
</p>
</div>
<style>
.introText {
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: flex-start;
background-color: #00111d;
color: #ffffff;
}
p {
padding-left: 2em;
max-width: 225px;
}
</style>