@font-face { font-family: SCP; src: url('../fonts/Montserrat-SemiBold.ttf')} 
@font-face { font-family: 'NotoMono'; src: url('../fonts/NotoSansMono-Medium.ttf')}

.ascii {
    overflow: auto;
    background-color: #1a1a1a;
    padding: 0px;
    color: #dbdbdb;
    font-family: SCP;
    white-space: pre;
    scrollbar-color: rgb(173, 173, 173) rgb(255, 255, 255);
    scrollbar-width: auto;
    margin-bottom: 20px;
}




@keyframes fadeInUp {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0%);
    opacity: 1;
  }
}

.fadeInUp-animation {
  animation: 2.5s fadeInUp;
}

html {
    scroll-behavior: smooth;
}
body {
    background-image: linear-gradient(to bottom, #1a1a1a, #41727d);
    background-attachment: fixed;
    margin: 0;
    font-family: SCP;
    color: #ede5d8;
    font-size: 14px;
}

body::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, #1a1a1a 0%, transparent 10%, transparent 90%, #41727d 100%);
    pointer-events: none;
}

.text-center {
    text-align: center;
    font-size: 20px;
    width: 100%;
}

h1 {
    font-size: 22px;
    margin: 0px;
    margin-top: 40px;
}
h2 {
    font-size: 16px;
    margin-top: 40px;
    margin-bottom: 0px;
}
h3 {
    font-size: 14px;
    margin-top: 10px;
    margin-bottom: 10px;
}
hr {
    background-color: #a19f9f;
    border: 0 none;
    height: 1px;
    margin-bottom: 20px;
}

/* Lists */
ul {
    list-style-position: outside;
    padding-left: 1.1rem;
    margin-top: 0px;
    margin-bottom: 20px;
}
ol {
    list-style-position: outside;
    padding-left: 1.6rem;
    margin-top: 0px;
    margin-bottom: 20px;
}
.custom-list {
    list-style-type: "";
    padding-left: 0px;
}

/* Paragraph*/
p { 
    margin-top: 0px;
    margin-bottom: 20px;
    line-height: 1.4;
}

/* Links */
a {
    color: inherit;
    transition: filter 0.3s ease;
}
a:hover {
    filter: brightness(1.4);
}

/* Code Blocks & Inline Code*/
pre {
    overflow: auto;
    background-color: rgb(23, 40, 43);
    color: #dbdbdb;
    padding: 10px;
    font-family: 'NotoMono', monospace;
    scrollbar-color:rgb(143, 143, 143) rgb(55, 55, 55);
    scrollbar-width: thin;
    margin-top: 0px;
    margin-bottom: 20px;
    border-radius: 4px;
}
code {
    background-color: rgb(23, 40, 43);
    font-family: 'NotoMono', monospace;
	padding-left: 4px;
    padding-right: 4px;
    border-radius: 2px;
}

/* Navbar */
.navbar {
    display: flex; 
    justify-content: space-between; 
    margin-top: 10px;  
    width: 100%;
    position: relative;
    z-index: 10;
}

/* Main middle content column*/
.page {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px 40px 20px;
    /*margin-bottom: 40px;*/
}

/* Information Boxs */
.warning {
    border: 1px solid rgb(255, 107, 107);
    padding: 10px;
    margin-bottom: 20px;
    color: rgb(255, 107, 107);
    border-radius: 4px;
}
.note {
    border: 1px solid rgb(137, 148, 211);
    padding: 10px;
    margin-bottom: 20px;
    color: rgb(137, 148, 211);
    border-radius: 4px;
}
.ack {
    border: 1px solid rgb(109, 168, 104);
    padding: 10px;
    margin-bottom: 20px;
    color: rgb(109, 168, 104);
    border-radius: 4px;
}
.bonus {
    border: 1px solid rgb(197, 178, 71);
    padding: 10px;
    margin-bottom: 20px;
    color: rgb(197, 178, 71);
    border-radius: 4px;
}

/* Back Button*/
.backbutton {
    color: #ede5d8;
}

.img {
    width: 100%;
    border-radius: 4px;
}
.list {
    padding-left: 0px;
}
