/* Минималистичный стиль с размещением в 5 столбцов */
body {
    font-family: 'Iosevka Nerd Font Mono', monospace;
    background-color: #282828; /* Gruvbox background */
    color: #ebdbb2; /* Gruvbox foreground */
    margin: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

main {
    text-align: center;
    padding: 20px;
    background-color: transparent;
}

h1 {
    font-size: 24pt;
    color: #fe8019; /* Gruvbox orange */
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

nav ul {
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* 5 столбцов */
    gap: 15px;
    list-style: none;
    padding: 0;
    margin: 0;
    justify-items: center;
}

nav li {
    text-align: center;
}

nav a {
    color: #ebdbb2; /* Gruvbox foreground */
    text-decoration: none;
    font-size: 14pt;
    padding: 5px 10px;
    border: 2px solid transparent;
    border-radius: 5px;
    transition: all 0.3s;
}

nav a:hover {
    color: #282828; /* Gruvbox background */
    background-color: #665c54; /* Gruvbox orange */
    border-color: #98971a; /* Gruvbox orange */
}



/* Минималистичная строка поиска */
.search-box {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border: 1px solid #b8bb26; /* Gruvbox orange */
    padding: 13px;
    border-radius: 5px;
    width: 100%;
    max-width: 999px;
    background-color: #3c3836; /* Gruvbox dark background */
}

.search-box .prompt {
    color:  #b8bb26; /* Gruvbox orange */
    font-size: 16pt;
    margin-right: 10px;
}

.search-box input {
    border: none;
    outline: none;
    background: none;
    color: #ebdbb2; /* Gruvbox foreground */
    font-family: 'Iosevka Nerd Font Mono', monospace;
    font-size: 14pt;
    width: 100%;
}

.search-box input::placeholder {
    color: #928374; /* Gruvbox gray */
    opacity: 0.7;
}

.search-box input:focus {
    outline: none;
    color: #fbf1c7; /* Gruvbox light foreground */
}
