body
{
    margin-left: 200px;
}

@font-face {
    font-family: 'Slime Drip';
    src: url('fonts/SlimeDrip.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

header
{
    font-size: 50px;
    text-align: center;
    background: linear-gradient(90deg, #00ff00, #009726);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-family: 'Slime Drip';
}

h1
{
    font-size: 3em;
    text-align: center;
    margin-top: 50px;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #00ff00, #009726);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;

}

section.navbar
{
    display: flex;
    flex-direction: column;
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    width: 200px;
    background: #222;
    align-items: center; /* Center items horizontally */
    justify-content: center; /* Center items vertically */
}

.navbar a {
  color: white;
  padding: 16px 0; /* Only vertical padding */
  text-decoration: none;
  border-bottom: 1px solid #444;
  text-align: center; /* Center text inside each link */
  width: 100%; /* Make links fill navbar width */
  box-sizing: border-box; /* Ensure border stays inside navbar */
}

.navbar a:last-child {
  border-bottom: none; /* Remove border from last link */
}

