/* 1. BACKGROUND WITH TILED PATTERN */
body {
    /* This adds an ultra-cute repeating baby pink checkered/heart tile pattern */
        background-image: url('Capture.PNG');
    background-repeat: repeat; 
    font-family: 'Courier New', monospace;
    color: #ff69b4; 
    margin: 0;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;

}

/* 2. GROUPS YOUR MAIN CONTENT WINDOWS */
h1, p, iframe {
    display: block;
    box-sizing: border-box;
}

/* Only gives structural canvas frames to the main blocks */
body > h1, body > p, body > ul, body > div {
    background-color: #ffffff; 
    border: 3px dashed #ffb6c1; 
    border-radius: 16px;
    padding: 25px;
    max-width: 750px;
    width: 100%;
    margin: 15px auto !important;
    text-align: center;
    box-shadow: 4px 4px 0px #ffa1b2; 
}

/* 3. FIXES THE TITLES SO THEY SIT INSIDE CLEANLY */
h3 {
    display: block;
    width: 100%;
    margin-top: 10px;
    margin-bottom: 15px;
    color: #ff69b4;
    text-shadow: 1px 1px 0px #ffffff;
    font-size: 18px;
}

/* 4. CLEANS UP YOUR PARAGRAPHS AND LINKS */
p {
    color: #7a5c61; 
    line-height: 1.6;
    font-size: 14px;
    text-align: justify;
}

a {
    color: #ff69b4;
    font-weight: bold;
    text-decoration: underline;
}

/* 5. ARRANGES THE INTERESTS BULLETS SIDE-BY-SIDE */
ul {
    list-style: none;
    padding: 0;
    margin: 10px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

li {
    background: #fff5f7;
    border: 1px dashed #ffb6c1;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: bold;
    display: inline-block;
    color: #7a5c61;
}

/* 6. NEAT CUSTOM PINK SCROLLBARS */
::-webkit-scrollbar { width: 12px; }
::-webkit-scrollbar-track { background: #ffe4e1; }
::-webkit-scrollbar-thumb {
    background: #ffb6c1;
    border: 2px solid #ffe4e1;
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover { background: #ff69b4; }
