
::-webkit-scrollbar {
	background-color: #202324;
}

::-webkit-scrollbar-thumb {
	background-color: #454a4d;
}

html {
    font-size: 20px;
    font-family: monospace;
    background-color: #13130f;
    color: #989898;
    text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}

body {
    margin: 0;
    padding: 8px;
    background: radial-gradient(300px 300px at 0 0, #3d3b30, #13130f);
    background-repeat: no-repeat;
    /* height: 100%; */
}

.line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px; /* Adjust the width of the vertical lines */
    height: 100%;
    background: linear-gradient(to bottom, transparent, transparent 10px, black 10px, black 20px, transparent 20px, transparent 30px);
    background-size: 1px 30px; /* Adjust the spacing between lines */
}

a:link {
	color: #2edfda;
	/* unvisited link */
}

a:visited {
	color: #b200b2;
}

a:hover {
	color: #ff6883;
}

a:active {
	color: #ffaf04;
	/*During click*/
}

.main {
    padding: 0% 5%;
}

.my-picture {
    border-radius: 0.5rem;
    height: 200px;
    object-fit: cover;
    object-position: top center;
}

img {
    max-width: 100%;
    border: 0.25rem solid #fff;
    border-radius: 0.5rem;
    /* height: 200px; */
    object-fit: cover;
    object-position: top center;
}

/* .glow {
    background: radial-gradient(600px 500px at 100px 400px, #3d3b30, #000000);
} */

.scrolling-text-container {
    overflow: hidden;
}

.scrolling-text {
    white-space: nowrap;
    animation: scrollText 120s linear infinite; /* Adjust duration as needed */
}

@keyframes scrollText {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-5478px);
    }
}

footer {
    margin-top: 14px;
    font-size: 44px;
}

footer nav{
    text-align: center;
}

footer nav a{
    text-align: center;
    text-decoration: none;
}

footer .social-links a svg {
    width: 1em;
    height: 1em;
}

.doc-box {
    height: 300px;
}






/* .section {
    height:50vh;
} */
.tag {
    background: #444;
    color: #ccc;
    border-radius: 5px;
    padding: 2px;
}

.no-wrap {
    text-wrap: nowrap;
}

.title {
    font-size: 40px;
    font-size: calc(100vw / 25);
    font-family: monospace;
    margin: 5px 0 0 0;
}

.center-text {
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-left {
    text-align: left;
}

.flex {
    display: flex;
    justify-content: space-between;
    flex-grow: 1;
    flex-wrap: wrap;
}

.row {
    flex-direction: row;
    gap: 20px;
}

.fillRow {
    flex-basis: 0;
    flex-grow: 1;
}

.grow {
    flex-grow: 1;
}

.section {
    flex-basis: 30%; /* Set the width of the sections */
    flex-basis: calc(33.33% - 20px);
    padding: 20px;
    text-align: center;
    margin: 10px;
    min-width: 100px;
}

.section-bottom {
    flex-basis: 30%;
    flex-basis: calc(33.33% - 20px);
    padding: 20px;
    text-align: center;
    margin: 10px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* Align content to the bottom */
}

.top20 {
    margin-top: 20px;
}

.inline {
    display: inline-block;
}

.remove-margin {
    margin: 0
}

.vert-center {
    align-self: center;
}

.dashed-hr {
    border: none;
    border-top: 2px dashed; /* You can adjust the width and color */
    height: 0; /* Set the height to 0 to make it purely decorative */
    margin: 20px 0; /* Adjust margin as needed */
}

.custom-dashed-hr {
    border: none;
    height: 2px; /* Set the height to control the thickness of the line */
    margin: 20px 0; /* Adjust margin as needed */
    border-top: 2px groove;
  }
