h1 {
    font-family: 'Fira Code', monospace;
    margin-top: 60px;
    text-align: center;
}

body {
    font-family: "Inter", sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 40px auto;
    max-width: 800px;
    padding: 0 20px;
    line-height: 1.6;
    background-color: #8f8ea3;
}

blockquote {
    font-style: italic;
    margin: 20px auto;
    padding: 10px 20px;
    border-left: 4px solid #444;
    color: #444;
}

.navbar {
    list-style: none;
    display: flex;
    justify-content: center;
    background-color: #8f8ea3;
    gap: 30px;
    padding: 10px 0;
    margin: 0;
}

.navbar li a {
    color: black;
    text-decoration: none;
    font-weight: bold;
}
  
.navbar li a:hover {
    text-decoration: underline;
}

nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #82828e;
    width: 100%;
}