body {
    background-color: #0970b1;
    color: white;
    font-family: 'Courier New', Courier, monospace;
    display: flex;
    justify-content: center;  
    align-items: center;      
    min-height: 100vh;        
    margin: 0;
}

.terminal {
    background-color: #2c3031;
    padding: 20px;
    max-width: 90vw; 
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.801);
    overflow: hidden; 
    margin: 4vh 4vh;          
}

.terminal-header {
    position: sticky;
    margin-bottom: 20px;
    border-bottom: 5px solid #0970b1;
}

.terminal-title {
    font-weight: bold;
}

.post-title {
    color: #675bd6;
    font-weight: bold;
    margin-top: 20px;
}

.post-heading {
    color: #b06ad1;
    font-weight: bold;
    margin-top: 20px;
}

.post-list {
    color: #6bbbe9;
    margin-right: 5px;
    list-style-type: square;
}

.post-content {
    color: #ffffff;
    margin-left: 20px; 
}

.terminal-buttons {
    display: flex;           
    flex-wrap: wrap;           
    gap: 10px;                 
    margin-right: 20px;
    padding-bottom: 15px;
    justify-content: flex-start;
}

.tab-button {
    background-color: #333;
    border: 1px solid #6b6b6b;
    color: #5e93a8;
    font-family: 'Courier New', Courier, monospace;
    padding: 5px 10px;
    margin-right: 5px;
    cursor: pointer;
    border-radius: 3px;
    transition: background-color 0.2s ease;
    text-decoration: none;
    display: inline-block;
}

.tab-button:hover {
    background-color: #9482e2;
    color: #000;
}

.tab-button.active {
    background-color: #61a1d4;
    color: #000;
    font-weight: bold;
}

.terminal-image {
    display: block;             
    max-width: 100%; 
    max-height: 50vh;           
    height: auto;               
    margin: 10px auto;          
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);  
    border-radius: 5px;
    object-fit: contain;         
}


.post-list {
    margin-top: 10px;
}

.post-entry {
    margin-bottom: 20px;
}

.post-title {
    color: #0077ff;  
    font-weight: bold;
    text-decoration: none; 
}

.post-title:hover {
    color: #b700ff;  
}

.post-date {
    color: #888;  
    font-size: 14px;
    margin-left: 20px;  
}

.post-description {
    color: #ffffff;
    margin-left: 20px;
}

.code-block {
    font-family: monospace;
    font-size:large;
    color: #6bbbe9;
    background-color: #4a4c4d;
}

.link {
    color: #0077ff;  
    font-weight: bold;
    text-decoration: none; 
}

.link:hover {
    color: #b700ff;  
}

.flex-container {
  display: flex;
  justify-content: safe center;
  align-items: center;
  padding: 10px;
  width: 100%;
  height: 50%;
  gap: 10px;
  flex-wrap: wrap;
}

.flex-container img {
  width: 100%;
  height: 100%;
  object-fit: scaled-down; 
  flex 1 2;
}