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

header {
    /* margin: 0 auto; */
    padding: 0.1rem 1rem;
}

nav {
    color: white;
    margin-top: 2rem;
    font-size: 16px;
    text-shadow: 0 0 1px rgba(255, 255, 255, 0.9);
}

ul {
    list-style: square;
    text-decoration: none;

    padding: 0 2rem;
    max-width: 400px;
}

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


main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 1rem;
    min-height: calc(100vh - 200px);
    /* background: rgba(4, 0, 255, 0.2); */
    text-shadow: 0 0 5px rgba(4, 0, 255, 0.9);


}

h1 {
    color: white;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.9);

}

p {
    color: white;
    font-size: 18px;
    line-height: 1.5;
    text-shadow: 0 0 2px rgba(255, 255, 255, 0.9);
}

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

a:hover {
    color: transparent;
    color: transparent;
    text-shadow: 0 0 3px rgba(255, 255, 255, 0.9);
}

footer {
    position: fixed;
    bottom: 0;
    right: 0;
    text-align: right;
    padding: 0.25rem 1rem;
}

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

.floating-gif {
    position: absolute;
    opacity: 0.6;
    animation: float 6s ease-in-out infinite;
}

.gif-3 {
    top: 45%;
    left: 3%;
    width: 75px;
    height: 75px;
    max-width: 175px;
    max-height: 175px;
    /* animation-delay: 2.4s; */
}

.gif-4 {
    top: 75%;
    left: 15%;
    width: 85px;
    height: 85px;
    /* animation-delay: 3.6s; */
}

.gif-5 {
    top: 35%;
    right: 8%;
    width: 95px;
    height: 95px;
    /* animation-delay: 0.8s; */
}

.gif-6 {
    top: 65%;
    right: 40%;
    width: 80px;
    height: 80px;
    /* animation-delay: 2s; */
}

.gif-7 {
    top: 15%;
    left: 45%;
    width: 85px;
    height: 85px;
    /* animation-delay: 3.2s; */
}

.gif-8 {
    top: 82%;
    right: 8%;
    width: 90px;
    height: 90px;
    /* animation-delay: 1.6s; */
}

.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%);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}