/* ========================================
 MARV WALKER CSS FILE - ORGANIZED
 ======================================== */

/* ========================================
 1. BASIC PAGE LAYOUT & STRUCTURE
 ======================================== */

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 20px;
  line-height: 1.6;
  background-color: #ffffff;
  color: #000000;
}

main {
  max-width: 1200px;
  margin: 0 auto;
}

/* ========================================
 2. HEADINGS & TYPOGRAPHY
 ======================================== */

h1 {
  font-size: 28px;
  color: #000000;
  text-align: center;
  margin: 20px 0;
}

h2 {
  font-size: 24px;
  color: #008000;
  text-align: center;
  margin: 15px 0;
}

h2.red{
  font-size: 24px;
  color: #800020;
  text-align: center;
  margin: 15px 0;
}

h3 {
  font-size: 20px;
  color: #000000;
  margin: 10px 0;
}


h3.reg {
  font-size: 16px;
  color: #000000;
  margin: 10px 0;
  text-align: left;
   font-style: normal;
}


h3.red2 {
  font-size: 14px;
  color: #660000;
  text-align: left;
  margin: 10px 0;
  font-style: normal;
}







h3.red {
  font-size: 16px;
  color: #800020;
  text-align: left;
  margin: 10px 0;
  font-style: italic;
}

h3.small {
  font-size: 13px;
  color: #800020;
  text-align: left;
  margin: 10px 0;
  font-style: italic;
}



/* ========================================
 3. TEXT & PARAGRAPHS
 ======================================== */

p {
  margin: 10px 0;
  text-align: left;
}

/* Special text styling */
.writes {
  background-color: #ffff00;
  color: #000000;
  font-style: italic;
  text-align: left;
  border: none;
  margin: 0.5px auto 1.6px auto;
  padding: 1px 100px;
  max-width: 1200px;
  width: 90%;
  font-size: 18px;
  font-family: Helvetica, Arial, sans-serif;
  font-weight: normal;
  line-height: 1.6;
  letter-spacing: 1px;
  word-spacing: 2px;
  text-indent: 0px;
  overflow: auto;
  white-space: normal;
  word-wrap: break-word;
}

css.italic {
  font-style: italic;
}

.italic {
  background-color: #ffffff;
  color: #800020;
  font-style: italic;
  text-align: left;
  border: none;
  margin: 0.5px auto 1.6px auto;
  padding: 1px 100px;
  max-width: 1200px;
  width: 90%;
  font-size: 18px;
  font-family: Helvetica, Arial, sans-serif;
  font-weight: normal;
  line-height: 1.6;
  letter-spacing: 1px;
  word-spacing: 2px;
  text-indent: 0px;
  overflow: auto;
  white-space: normal;
  word-wrap: break-word;
}






/* ========================================
 4. LINKS & NAVIGATION
 ======================================== */

a {
  color: #0066cc;
  text-decoration: underline;
}

a:hover {
  color: #004499;
}

a:visited {
  color: #663399;
}

/* ========================================
 5. LISTS
 ======================================== */

ul {
  margin: 10px 0;
  padding-left: 30px;
}

li {
  margin: 5px 0;
}

.flush-left {
  text-align: left;
  padding-left: 0;
  margin-left: 0;
}

.url-list {
  text-align: left;
}

/* ========================================
 6. IMAGES & MEDIA
 ======================================== */

img {
  max-width: 100%;
  height: auto;
}

/* ========================================
 7. LAYOUT CONTAINERS & POSITIONING
 ======================================== */

.center {
  text-align: center;
}

.center-block {
  margin: 0 auto;
  text-align: center;
}

.link-stack {
  margin: 20px 0;
}

/* ========================================
 8. FORMS & INPUT ELEMENTS
 ======================================== */

/* Add form styling here if needed */

/* ========================================
 9. MOBILE RESPONSIVE STYLES
 ======================================== */

@media screen and (max-width: 768px) {
  body {
  padding: 10px;
  }
  
  .writes {
  padding: 1px 20px;
  width: 95%;
  }
  
  h1 {
  font-size: 24px;
  }
  
  h2 {
  font-size: 20px;
  }
}

/* ========================================
 10. SPECIAL EFFECTS & ANIMATIONS
 ======================================== */

/* Add any hover effects or animations here */

/* ========================================
 11. PRINT STYLES
 ======================================== */

@media print {
  body {
  background: white;
  color: black;
  }
  
  a {
  text-decoration: none;
  color: black;
  }
}

/* ========================================
 12. CUSTOM UTILITY CLASSES
 ======================================== */

.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

Side-by-Side Responsive Images</title>
    <style>
        .image-container {
            display: flex;
            gap: 20px;
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            box-sizing: border-box;
        }
        
        .image-link {
            flex: 1;
            display: block;
            overflow: hidden;
            border-radius: 8px;
            transition: transform 0.3s ease;
        }
        
        .image-link:hover {
            transform: scale(1.02);
        }
        
        .image-link img {
            width: 100%;
            height: auto;
            display: block;
            object-fit: cover;
        }
        
        /* For equal height images, uncomment below and set desired height */
        /*
        .image-link img {
            height: 300px;
            object-fit: cover;
        }
        */
        
        /* Mobile responsiveness */
        @media (max-width: 768px) {
            .image-container {
                flex-direction: column;
                gap: 15px;
            }
        }
        
        /* For very small screens */
        @media (max-width: 480px) {
            .image-container {
                padding: 10px;
                gap: 10px;
            }
        }

/* ========================================
 END OF CSS FILE
 ======================================== */