html {
    font-family: monospace;
    margin: 0;
    padding: 0;
    color: white;
    background: linear-gradient(to top, #401d11, #b45d40, #DD723C, #ff9641, #DCB697, #9BA5AE, #3E5879, #020B1A);
    background-attachment: fixed;
}

body {
    max-width: 800px;
    margin: 0 auto;
    padding: 1rem;
}

article {
    margin-bottom: 1rem;
    border: white solid 1px;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    background: rgba(0, 0, 0, 0.2);
}

h1 {
    margin-bottom: 4rem;
    padding: 1rem 0 0;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.8);
    /* text-align: center; */
    font-style: italic;
    text-decoration: underline;
}

/* h2,
h3 {
    text-decoration: underline;
} */

a {
    color: white;
    /* text-decoration: none; */
}

p {
    font-size: 14px;
    line-height: 1.5;
}

ul {
    font-size: 14px;
    line-height: 2;
}

ul li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    padding: 0.5rem 0;
}

.numbered-list {
    margin-bottom: 2rem;
}

.numbered-list li {
    list-style-type: decimal;
    padding-left: 5px;
}

.no-list-style li {
    list-style-type: none;
    padding-left: 0;
}

.table-of-contents {
    line-height: 1;
}

.table-of-contents li {
    list-style-type: none;
    border-bottom: none;
    padding-left: 0;
}

img {
    display: block;
    width: 100%;
    max-width: 800px;
    height: auto;
    /* margin-left: -100px; */
    /* margin-bottom: -30px; */
}

code {
    background-color: #333;
    color: #f8f8f2;
}

.to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    /* background-color: black; */
    color: white;
    padding: 10px 15px;
    /* text-decoration: none; */
    font-size: 1em;
    /* transition: background-color 0.3s ease; */
    z-index: 1000;
}

.cloud {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.cloud::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100vw;
    width: 300vw;
    height: 100vh;
    background-image: url('assets/gifs/cloud.png');
    background-repeat: repeat-x;
    background-size: 100vw 100vh;
    animation: marquee 120s linear infinite;
    opacity: 0.8;
}

@keyframes marquee {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}