mirror of
https://codeberg.org/theamazing0/portfolio.git
synced 2025-10-30 10:22:18 -04:00
47 lines
1.1 KiB
Text
47 lines
1.1 KiB
Text
---
|
|
import Layout from "../layouts/Layout.astro";
|
|
import Card from "../components/Card.astro";
|
|
import Icon from "../components/Icon.astro";
|
|
|
|
---
|
|
|
|
<Layout title="Samvid Konchada">
|
|
<main>
|
|
<h1 class="title">Samvid Konchada</h1>
|
|
<p class="subtitle">
|
|
Hey there! I'm Samvid, a high schooler interested in computer science and programming.
|
|
</p>
|
|
<div style="margin-top:2rem">
|
|
<Icon icon="matrix" size="32"></Icon>
|
|
<Icon icon="mastodon" size="32"></Icon>
|
|
<Icon icon="git" size="32"></Icon>
|
|
</div>
|
|
</main>
|
|
</Layout>
|
|
|
|
<style>
|
|
main {
|
|
color: white;
|
|
|
|
font-size: 20px;
|
|
/* line-height: 1.6; */
|
|
}
|
|
html {
|
|
background-image: url("bg.svg");
|
|
background-attachment: fixed;
|
|
background-repeat: no-repeat;
|
|
background-size: cover;
|
|
}
|
|
.title {
|
|
font-size: 4rem;
|
|
font-weight: 700;
|
|
margin-top: 3rem;
|
|
margin-bottom: 1.5rem;
|
|
}
|
|
.subtitle {
|
|
color: #c3d6b2;
|
|
max-width: 55%;
|
|
font-size: 1.6rem;
|
|
margin: 0px;
|
|
}
|
|
</style>
|