@import url('https://fonts.googleapis.com/css2?family=Chakra+Petch:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Share+Tech+Mono:wght@300;400;500;600;700&display=swap');

:root {
    --font-stack: 'Chakra Petch', sans-serif;
    --mono-font-stack: 'Share Tech Mono', sans-serif;
    --body-bg-image: url("pattern-dark.png");
    --body-bg-image-size: 4.6875rem;
    --body-bg-cover: url("cover-2-dark.jpg");
    --body-bg-gradient: linear-gradient(180deg, rgba(50, 70, 80, 0.9) 0%, rgb(13, 16, 27) 100%);
    --body-bg: #FFFFFF;
    --bs-border-width: 2px;
    --bs-border-style: solid;
    --bs-border-color: rgba(255, 255, 255, 0.2);
    --bs-border-color-translucent: rgba(255, 255, 255, 0.1);
    --bs-border-radius: 4px;
    --bs-border-radius-sm: 2px;
    --bs-border-radius-lg: 8px;
    --bs-border-radius-xl: 1rem;
    --bs-border-radius-xxl: 2rem;
    --bs-border-radius-2xl: var(--bs-border-radius-xxl);
    --bs-border-radius-pill: 50rem;
    --bs-body-color: rgba(0, 0, 0, 0.75);
    --bs-body-color-rgb: 0,0,0;
    --bs-card-spacer-y: 1rem;
    --bs-card-spacer-x: 1rem;
    --bs-card-title-spacer-y: 0.5rem;
    --bs-card-border-width: var(--bs-border-width);
    --bs-card-border-color: var(--bs-border-color-translucent);
    --bs-card-border-radius: var(--bs-border-radius);
    --bs-card-inner-border-radius: calc(var(--bs-border-radius) - (var(--bs-border-width)));
    --bs-card-cap-padding-y: 0.5rem;
    --bs-card-cap-padding-x: 1rem;
    --bs-card-cap-bg: rgba(var(--bs-body-color-rgb), 0.03);
    --bs-card-bg: transparent;
    --bs-card-img-overlay-padding: 1rem;
    --bs-card-group-margin: 10px;
}


/* Change font family for the entire site */
body {
    font-family: 'Chakra Petch', sans-serif; /* Use your preferred font */
    font-size: 16px;
    line-height: 24px;
    padding-top: 10px;
    background-color: rgb(29,40,53); /* Dark gray background */
    background-image: linear-gradient(180deg, rgba(50, 70, 80, 0.9) 0%, rgb(13, 16, 27) 100%);
    color: #f5f5f5; /* Light text color */
    background-image: var(--body-bg-image);
    background-size: var(--body-bg-image-size);
    background-repeat: repeat;
    background-attachment: initial;
}



/* Style the header */
header {
    background-color: transparent;
    color: #ffffff;
}

/* Change link colors */
a {
    color: rgb(60, 210, 165); /* Green links */
}
a:hover {
    color: black; /* Orange links on hover */
    background-color: rgb(60, 210, 165);
}

/* Customize sidebar background and text */
.md-sidebar {
    background-color: #252526; /* Sidebar background */
    color: #dcdcdc; /* Sidebar text color */
}

/* Change code block background and text */
code {
    background-color: transparent; /* Code block background */
    color: rgb(101, 199, 216) /* Code text color */
}

/* Style inline code */
code.inline {
    background-color: transparent;
    color: #e06c75;
    padding: 2px 4px;
    border-radius: 4px;
}

pre {

    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    height: var(--bs-card-height);
    color: rgb(101, 199, 216);
    word-wrap: break-word;
    background-color: var(--bs-card-bg);
    background-clip: border-box;
    border: var(--bs-card-border-width) solid var(--bs-card-border-color);
    border-radius: var(--bs-card-border-radius);
    overflow-x: hidden;


} 

footer {
    visibility: hidden;
}

pre code {
    background-color: transparent;
    color: rgb(101, 199, 216);
    overflow-x: hidden;
    margin: 1px;

}

pre::before, pre::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    border: 1px solid #ffffff;
  }
  
pre::before {
    top: 0;
  left: 0;
  border-right: none;
  border-bottom: none;
  }
  
pre::after {
    bottom: 0;
    right: 0;
    border-left: none;
    border-top: none;
  }

.container h1 {
    font-size: 23px;
}

.container h2 {
    font-size: 20px;
}

.container h3 {
    font-size: 18px;
}

.terminal-prompt.logo {
    font-size: 24px;
}

.terminal-prompt.logo a {
    color: #ffffff;
}

.terminal-prompt.logo a:hover {
    color: #ffffff;
    background-color: transparent;
}



