/*
Version: 1.0.3
Date last modified: 10/19/2024
*/

body {
    background-color: #3f3b3a;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
    width: 80%;
    line-height: 25px;
	text-align: left;
}

ul.blog-posts {
	list-style-type: none;
	padding: unset;
}

ul.blog-posts li {
	display: flex;
    color: #fff;
    font-family: sans-serif;
}

ul.blog-posts li span {
	flex: 0 0 130px;
}

.heading {
    margin-top: 30px;
    margin-bottom: 30px;
    font-size: 35px;
    color: #fff;
    font-family: sans-serif;
    text-decoration: underline dotted #ff0000;
    text-underline-offset: 3px;
}

.heading-right {
    float: right;
    font-size: 35px;
    font-family: sans-serif;
}

@media screen and (min-width: 320px) {
  .heading {
    font-size: calc(16px + 6 * ((100vw - 320px) / 680));
  }
}

@media screen and (min-width: 320px) {
  .heading-right {
    font-size: calc(16px + 6 * ((100vw - 320px) / 680));
  }
}

.warning-header {
	font-family: sans-serif;
	color: #ffff00;
}

.text {
    color: #ffffff;
    font-family: sans-serif;
}

.homepage-desc {
    font-family: sans-serif;
    color: #fff;
    font-size: 16px;
}

a, a:visited {
    color: #FBBB25;
	text-decoration: none;
    /*text-decoration: underline;*/
}

a:hover {
    color: #FBBB25;
    text-decoration: underline;
}

@media screen and (min-width: 320px) {
  .li-homepage {
    font-size: calc(16px + 6 * ((100vw - 320px) / 680));
  }
}
@media screen and (min-width: 320px) {
  .li-homepage::before {
    font-size: calc(16px + 6 * ((100vw - 320px) / 680));
  }
}

img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.blockquote-style {
  font-size: 20px;
  margin-top: 10px;
  margin-bottom: 10px;
  margin-left: 50px;
  padding-left: 15px;
  border-left: 3px solid #ccc;
  line-height: 25px;
  overflow-wrap: break-word;
  color: #0b98ba;
} 


/* Neon Text for 404 page */

.neonText {
    animation: flicker 1.5s infinite alternate;
    color: #fff;
}

.h1-neon {
    font-size: 4.2rem;    
}

/* Flickering animation */
@keyframes flicker {
    
    0%, 18%, 22%, 25%, 53%, 57%, 100% {

    text-shadow:
    0 0 4px #fff,
    0 0 11px #fff,
    0 0 19px #fff,
    0 0 40px #0ebfe9,
    0 0 80px #0ebfe9,
    0 0 90px #0ebfe9,
    0 0 100px #0ebfe9,
    0 0 150px #0ebfe9;
  
  }
  
    20%, 24%, 55% {        
    text-shadow: none;
  }    
}

/* Additional styling */
  
.h2-neon {
    font-size: 1.8rem;
}
.container {
    margin-top: 20vh;
}

.absolute-center {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}
	
.body-neon {
    font-size: 18px;
    font-family: "Helvetica Neue", sans-serif;
    background-color: #3f3b3a;
}  

.h1-neon, .h2-neon {
    text-align: center;
    text-transform: uppercase;
    font-weight: 400;
}

/* Code block experiment */

pre {
	display: block;
    background-color: #262626;
    text-align: left;
    overflow: auto;
    font-family: 'Monaco', monospace;
    padding:  1em;
    border-radius: 15px;
}

code {
    font-family: Monaco, monospace;
    text-align: left;
    font-size: $base-font-size;
    line-height: 100%;
    background-color: #262626;
    padding: 0.2em;
    letter-spacing: -0.05em;
    word-break: normal;
    border-radius: 5px;
}

pre > code {
	display: block;
    border: none;
    text-align: left;
    background: none;
    font-size: $base-font-size * 0.875;
    line-height: 1em;
    letter-spacing: normal;
    word-break: break-all;
	text-indent: 0;
}

details > summary {
    #background-color: #fdb;
    background-color: #333;
    cursor: pointer;
    padding: .5rem 1rem;
    color: #fff;
}

details summary > * {
    display: inline;
}

details > div {
  border: 2px solid #333;
  margin-top: 0;
  padding: 1rem;
5
