body {
    background-color: skyblue;
    font-family: Arial, sans-serif;
}

.navbar {
    background-color: #0096c7;
}


.navbar-brand {
    color: #fff !important;
    font-weight: bold;
}

.navbar-brand img {
  color: orange;
  height: 30px;
  width: 190px;
}

.navbar-nav .nav-link {
    color: #fff !important;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.navbar-nav .nav-link:hover {
    color: black !important;
}

p.readmore {
    margin-top: 1em;
}

.readmore a {
    text-decoration: none;
    color: gray;
}

.readmore a:hover {
    color: orange !important;
}

pre {
    position: relative;
    padding: 16px;
}

.btn-copy {
    position: absolute;
    right: 10px;
    top: 10px;
    z-index: 10;
    padding: 5px;
    font-size: 12px;
    background: #007BFF;
    color: white;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    opacity: 0.8;
}

.kubecontainer {
    background-color: white;
    padding: 2rem;
    border-radius: 0.3rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

h1 {
    font-size: 2.5rem;
    color: #007BFF;
    font-weight: bold;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

h2 {
    font-size: 2rem;
    color: #0056b3;
    font-weight: bold;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

h3 {
    font-size: 1.75rem;
    color: #004085;
    font-weight: bold;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}


.article-meta {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1rem;
}

.article-meta i {
    margin-right: 0.5rem;
}

.tag {
    background-color: #007BFF;
    color: white;
    padding: 0.2rem 0.6rem;
    font-size: 0.875rem;
}

/* Terminal window on command.is */
.terminal-window {
    width: 100%;
    max-width: 900px;
    margin: 2rem auto;
    background-color: #1e1e1e;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    color: #00ff00;
    font-family: 'Courier New', Courier, monospace;
}

.terminal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 1rem;
    background-color: #333;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.buttons {
    display: flex;
    gap: 0.5rem;
}

.buttons span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}

.red {
    background-color: #ff5f56;
}

.yellow {
    background-color: #ffbd2e;
}

.green {
    background-color: #27c93f;
}

.terminal-title {
    color: #bbb;
    font-size: 0.9rem;
}

.terminal-body {
    padding: 2rem;
}

.terminal-tagline {
    font-size: 3rem;
    margin-bottom: 0.3rem;
    text-align: center;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 2px;
}

.terminal-nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.terminal-nav a {
    color: #00ff00;
    text-decoration: none;
    font-size: 1.5rem;
}

.terminal-nav a:hover {
    text-decoration: underline;
}

/* Quote */
.quote {
    text-align: center;
    font-style: italic;
    font-size: 1.2rem;
    color: #555; /* A more subtle color */
    margin-bottom: 30px;
    padding: 30px;
    background-color: #087296;
}

.quote p {
    margin: 0;
    line-height: 1.5;
    color: white;
}

p.quote-author {
    font-size: 1rem;
    color: rgb(199, 192, 192);
    margin-top: 5px;
}

.blog-image {
    height: auto;
    width: 100%;
}

