/* General Styles */
body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f9f9f9;
}

header {
    text-align: center;
    margin-bottom: 30px;
}

header h1 {
    font-size: 2em;
    font-weight: 600;
}

main {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

h2 {
    font-size: 2em;
    margin-bottom: 10px;
}

h3 {
    font-size: 1.5em;
    margin-top: 30px;
}

h4 {
    font-size: 1.2em;
    margin-top: 20px;
}

p {
    margin-bottom: 15px;
}

/* Code Block Styles */
.code-block {
    background: #1a1a1a;
    border-radius: 5px;
    padding: 15px;
    margin: 20px 0;
    overflow-x: auto;
}

.code-block img {
    width: 100%;
    height: auto;
}

.neovim-screenshot {
    filter: invert(100%);
}

/* Features Section */
.features {
    display: flex;
    gap: 20px;
    margin: 20px 0;
}

.feature {
    flex: 1;
    background: #f0f0f0;
    padding: 15px;
    border-radius: 5px;
}

.feature-screenshot {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

/* Plugins Section */
.plugins {
    margin: 20px 0;
}

.plugin {
    margin-bottom: 15px;
}

.plugin h5 {
    margin-bottom: 5px;
    font-weight: 600;
}

/* Youtubers Section */
.youtubers {
    display: flex;
    gap: 20px;
    margin: 20px 0;
}

@media only screen and (max-width: 800px) {
  .youtubers {
    flex-direction: column;
    align-items: center;
  }
}

.youtuber {
    flex: 1;
    text-align: center;
}

.youtuber-thumbnail {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

/* Footer Styles */
footer {
    text-align: center;
    margin-top: 30px;
    padding: 20px;
    border-top: 1px solid #ddd;
}

.social-icons {
    margin-top: 10px;
}

.social-icons a {
    margin: 0 10px;
    text-decoration: none;
    font-size: 1.2em;
}

/* Code Font */
code {
    font-family: 'Fira Code', monospace;
    background: #f0f0f0;
    padding: 2px 5px;
    border-radius: 3px;
}

