body
{
    margin-left: 200px;
    background: linear-gradient(to bottom, #ffffff, #595959);
}

@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';
}

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 */
}

section.content
{
    background-color: rgb(68, 68, 68);

    display: flex;
    flex-direction: column;

    margin-left: 200px;
    margin-right: 200px;

    height: 100vh;
    text-align: center;
    box-shadow: #222 0px 0px 20px;
    color: white;
    


}
section.content h1
{
    font-size: 40px;
    margin-top: 20px;
    color: white;
    
}
