body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: rgb(23, 22, 20);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow-x: hidden;
}

header {
    color: white;
    padding: 20px;
    white-space: pre-wrap;
    font-family: monospace;
    text-align: center;
    max-width: 90%;
    font-size: 1rem;
}


#prose-ref{
    display: flex;
    padding: 20px;
    justify-content: center;
    text-align: center;
}


#prose-img{
    width: 100%;
}



.info {
    margin-top: 20px;
    font-size: 1.2rem;
    text-align: left;
    font-family: "JetBrains Mono", "Courier New", monospace;
    font-weight: 400;
    width: 90%;
    padding: 20px;
    box-sizing: border-box;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.info p {
    margin: 0;
    line-height: 1.6;
}

.info .highlight {
    color: rgb(214, 81, 112);
    font-weight: 500;
}

.highlight2 {
    color: rgb(214, 81, 112) !important;
    font-weight: 500;
}



.info::after {
    content: "█";
    animation: blink 1s step-end infinite;
    opacity: 0.7;
}

@keyframes blink {
    50% { opacity: 0; }
}

@media (max-width: 768px) {
    header {
        font-size: 1.3rem;
        padding: 15px;
    }
    .info {
        font-size: 1.2rem;
        padding-left: 3%;
    }
}

@media (max-width: 480px) {
    header {
        font-size: 0.5rem;
        padding: 10px;
    }
    .info {
        font-size: 1rem;
        padding-left: 2%;
        width: 95%;
    }
}

.elegant-section {
    width: 90%;
    margin-top: 40px;
    padding: 20px;
    box-sizing: border-box;
    position: relative;
    font-family: 'Newsreader', serif;
    padding-left: 0;
}

.elegant-section::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(214, 81, 112, 0.5);
}

.elegant-section h2 {
    font-weight: 500;
    font-size: 2rem;
    color: rgb(214, 81, 112);
    margin-bottom: 30px;
    font-weight: 500;
    text-align: left;
}

.download-content {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.download-text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.elegant-section p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 15px;
    text-align: left;
    font-weight: 400;
}

.downloads-section {
    margin-top: 20px;
    padding: 20px;
    box-sizing: border-box;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.downloads-section p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 15px;
    text-align: left;
    font-weight: 400;
}

.download-content {
    display: flex;
    align-items: start;
    gap: 20px;
}

.download-content img {
    width: 300px;
    height: auto;


}

@media (max-width: 768px) {
    .download-content {
        flex-direction: column;
        align-items: center;
    }
    
    .download-content img {
        width: 100%;
        max-width: 300px;
    }
}
