/* Background and General Styling */
body {
    background-color: #481B07;
    font-family: 'Baskerville', serif;
    color: #FBF7AF;
    margin: 0;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    height: 100vh;
    overflow: hidden;
}
/* Start https://www.cursors-4u.com */ * {cursor: url(https://cur.cursors-4u.net/nature/nat-7/nat627.cur), auto !important;} /* End https://www.cursors-4u.com */

/* Image Container Styling */
.image-container {
    position: absolute;
    top: 20%;
    left: 15%;
    width: 35%;
}

.image-container img {
    width: 100%;
    max-width: 580px;
    height: auto;
}

/* Link Styling */
.text-container a {
    color: #FBF7AF !important; /* Force the color to stay the same */
    text-decoration: underline !important; /* Force underline */
}

/* Ensure link retains color in different states */
.text-container a:hover,
.text-container a:focus,
.text-container a:active,
.text-container a:visited { /* Include :visited to maintain color */
    color: #FBF7AF !important; /* Same color for all states */
    text-decoration: underline !important; /* Ensure it remains underlined */
}

/* Text Container Styling */
.text-container {
    position: absolute;
    bottom: 20%;
    right: 15%;
    font-size: 18px; /* Increase font size for desktop */
    line-height: 1.6;
    text-align: right;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    /* Adjust layout for tablets and smaller screens */
    .image-container {
        top: 15%;
        left: 10%;
        width: 50%;
    }
    .text-container {
        bottom: 15%;
        right: 10%;
        font-size: 16px; /* Slightly larger font size for mobile */
    }
}

@media (max-width: 480px) {
    /* Adjust layout for mobile screens */
    .image-container {
        top: 10%; /* Adjusts top margin slightly for mobile */
        left: 8%; /* Aligns image with 8% left margin */
        width: 84%; /* Ensures 100% width within 8% left and right margins */
    }
    .text-container {
        padding-top: 20%
        margin-top: 40%; /* Places text 20% down from the image */
        left: 8%;
        font-size: 18px; /* Increased font size for mobile */
        text-align: left;
    }
}
