@import url('https://fonts.googleapis.com/css2?family=Bungee&family=Fredoka:wght@300..700&family=Oi&display=swap');

html, body {
    height: 100%;
}

.page
{
    font-family: "Fredoka", sans-serif;
    font-weight: 400;
    font-style: normal;
    height: 100vh;
    overflow-y: auto;
}

h1
{
    margin: 0;
    cursor: pointer;
    margin: 4px;
    margin-left: 9px;
}

.top
{
    background-color: lightsteelblue;
    border-bottom: 5px solid black;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 12px;
}

.top-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav {
    display: flex;
    gap: 8px;
    align-items: center;
}

.nav-item {
    display: inline-block;
    padding: 6px 12px;
    background: #e4eef6;
    border: 2px solid #333;
    border-radius: 8px;
    text-decoration: none;
    color: #111;
    font-weight: 700;
}

.nav-item.active {
    background: #9fb8d9;
    color: #000;
    box-shadow: inset 0 -3px 0 rgba(0,0,0,0.15);
}

.search {
    padding: 8px 12px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 8px;
    border: 5px solid #333;
    max-width: 420px;
    width: 40%;
}

body
{
    margin: 0;
}

.projects
{
    display: grid;
    grid-template-columns: auto 1fr;
}

p, h2
{
    margin-bottom: 5px;
}

.aboutme-IMG
{
    width: 200px;
    height: auto;
    border: 5px solid black;
    border-radius: 15px;
    display: block;
    margin: 15px;
}

p
{
    font-size: large;
}

li
{
    font-size: large;
}

h1 , a
{
    color: inherit;
    text-decoration: none;
}