* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    background-image: url('https://peachyvoid.com/about/dithdeer.png');
    background-repeat: repeat;
    background-size: 100%;
    background-attachment: fixed;
    background-position: center;
    font-family: 'Courier New', Courier, monospace;
    padding: 20px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.content-container {
    background: linear-gradient(
        135deg,
        rgba(102, 81, 122, 0.425) 0%,
        rgba(161, 131, 201, 0.671) 50%,
        rgba(158, 131, 201, 0.637) 100%
    );
    border-radius: 15px;
    max-width: 900px;
    width: 95%;
    min-height: 700px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2),
                inset 0 2px 5px rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
}

.top-bar {
    background: linear-gradient(
        to bottom,
        rgba(92, 32, 126, 0.7) 0%,
        rgba(84, 32, 126, 0.5) 100%
    );
    width: 100%;
    height: 50px;
    border-radius: 10px 10px 0 0;
    position: absolute;
    top: 0;
    left: 0;
    box-shadow: inset 0 2px 3px rgba(255, 255, 255, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    justify-content: space-between; /* Space link and title */
    align-items: center;
    padding: 0 15px; /* Padding for link and title */
    color: #fff;
    font-size: 1.2rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.home-link {
    color: #fff;
    font-size: 1rem; /* Slightly smaller than title */
    text-decoration: none; /* No underline by default */
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
    transition: color 0.3s ease; /* Smooth hover effect */
}

.home-link:hover {
    color: #d8b4ff; /* Light purple hover effect */
    text-decoration: underline; /* Underline on hover */
}

.content-wrapper {
    width: 100%;
    max-height: 7800px;
    overflow-y: auto;
    margin-top: 70px;
    padding: 10px;
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.links-column {
    flex: 1.5;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.left-column {
    flex: 3;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.right-column {
    flex: 1.5;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.links-box {
    background: linear-gradient(
        135deg,
        rgba(93, 76, 110, 0.747) 0%,
        rgba(67, 59, 75, 0.753) 50%,
        rgba(50, 31, 68, 0.568) 100%
    ),
    url('https://peachyvoid.com/about/CARPET08p.png') center/cover no-repeat;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15),
                inset 0 1px 3px rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.342);
    backdrop-filter: blur(3px);
    width: 100%;
    max-width: 100%;
}

.content-box {
    background: linear-gradient(
        135deg,
        rgba(180, 150, 210, 0.192) 0%,
        rgba(111, 90, 131, 0.432) 50%,
        rgba(120, 99, 141, 0.322) 100%
    ),
    url('https://peachyvoid.com/about/floral2.png') center/cover no-repeat;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15),
                inset 0 1px 3px rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.507);
    backdrop-filter: blur(3px);
    max-width: 100%;
}

.about-me-box {
    background: linear-gradient(
            135deg,
            rgba(64, 49, 78, 0.788) 0%,
            rgba(144, 119, 170, 0.541) 50%,
            rgba(36, 24, 48, 0.377) 100%
        ),
        url('https://peachyvoid.com/about/bgp1.jpg') center/cover no-repeat;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15),
                inset 0 1px 3px rgba(255, 255, 255, 0.11);
    border: 1px solid rgba(186, 148, 196, 0.986);
    backdrop-filter: blur(3px);
    max-width: 100%;
}

.mission-box {
    background: linear-gradient(
        135deg,
        rgba(93, 76, 110, 0.747) 0%,
        rgba(67, 59, 75, 0.753) 50%,
        rgba(50, 31, 68, 0.877) 100%
    ),
    url('https://peachyvoid.com/about/cbd6bb2efd30c6fc5db3fd982604c48f.jpg') center/cover no-repeat;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15),
                inset 0 1px 3px rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.342);
    backdrop-filter: blur(3px);
    width: 100%;
    max-width: 100%;
}

/* Style for content inside boxes */
.content-box h2,
.links-box h2,
.about-me-box h2,
.mission-box h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    text-align: center;
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.content-box p,
.links-box p,
.links-box li,
.about-me-box p,
.mission-box p,
.mission-box li {
    font-size: 0.9rem;
    line-height: 1.5;
    text-align: center;
    color: #f3d3d3;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
}

/* Style for links in boxes */
.links-box a,
.content-box a,
.about-me-box a,
.mission-box a {
    color: #e2dee6; /* Light purple for links */
    text-decoration: none;
    transition: color 0.3s ease;
}

.links-box a:hover,
.content-box a:hover,
.about-me-box a:hover,
.mission-box a:hover {
    color: #f0e1ff; /* Paler purple on hover */
    text-decoration: underline;
}

/* Divider styles */
.floral-divider {
    width: 560px;
    height: 36px;
    margin: 10px auto 15px;
    background: url('https://peachyvoid.com/about/vine33.gif') repeat-x center;
    background-size: contain;
    position: relative;
    z-index: 0;
}

.moon-divider {
    width: 206px;
    height: 26px;
    margin: 10px auto 15px;
    background: url('https://peachyvoid.com/about/moonstars.gif') repeat-x center;
    background-size: contain;
    position: relative;
    z-index: 0;
}

.under-links {
    color:#fff

    
}

.under-links a {
    color: #c8c8f5;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    body {
        background-size: cover; /* Stretch to cover the viewport */
        background-repeat: no-repeat; /* Prevent tiling */
        background-position: 25% 30%; /* Shift right, adjustable for exact positioning */
    }
    .content-container {
        padding: 15px;
        max-width: 90%;
        min-height: auto;
        height: 95vh;
        display: flex;
        flex-direction: column;
        box-sizing: border-box;
        overflow: hidden;
    }
    .top-bar {
        height: 40px;
        font-size: 0.9rem;
    }
    .home-link {
        font-size: 0.8rem;
    }
    .content-wrapper {
        margin-top: 50px;
        max-height: calc(95vh - 80px);
        flex: 1;
        flex-direction: column;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    .links-column,
    .left-column,
    .right-column {
        align-items: center;
        width: 100%;
    }
    .content-box,
    .about-me-box,
    .mission-box,
    .links-box {
        max-width: 100%;
        width: 100%;
    }
    .content-box h2,
    .about-me-box h2,
    .mission-box h2,
    .links-box h2 {
        font-size: 1.2rem;
    }
    .content-box p,
    .about-me-box p,
    .mission-box p,
    .links-box p,
    .links-box li,
    .mission-box li {
        font-size: 0.8rem;
    }
    .floral-divider {
        width: 225px;
        height: 36px;
        margin: 10px auto 15px;
        background: url('https://peachyvoid.com/about/vine33.gif') repeat-x center;
        background-size: contain;
        position: relative;
        z-index: 0;
    }
}
/* Divider styles */


.under-links {
    color:#fff

    
}

.under-links a {
    color: #c8c8f5;
}