/* Markdown Stylesheet - Summer Vibes */

.banner {
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: top;
}

@import url('https://fonts.googleapis.com/css2?family=Pacifico&family=Quicksand:wght@300;400;700&display=swap');

body {
    font-family: 'Quicksand', sans-serif, 'Arial', 'Helvetica', sans-serif;
    color: #333;
    background-color: #FFFAF0; /* Light summer feel */
    margin: 40px auto;
    max-width: 800px;
    line-height: 1.6;
    padding: 20px;
}

h1, h2, h3 {
    font-family: 'Pscifico', 'Arial', 'Helvetica', sans-serif;
    color: #FF8800; /* Sunset orange */
    
}

h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

h2 {
    font-size: 2em;
    margin-bottom: 15px;
}

h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

p {
    font-size: 1.2em;
    margin-bottom: 15px;
    text-align: justify;
}

ul, ol {
    padding-left: 25px;
    font-size: 1.2em;
}

blockquote {
    font-style: italic;
    color: #0077B6; /* Ocean blue */
    padding: 10px 20px;
    border-left: 5px solid #FF8800;
    background: rgba(255, 136, 0, 0.1);
}

code {
    font-family: 'Courier New', monospace;
    background: #FFF3E0;
    padding: 2px 5px;
    border-radius: 4px;
}

pre {
    background: #FFF3E0;
    padding: 15px;
    border-radius: 6px;
    overflow-x: auto;
    font-size: 1em;
}

a {
    color: #0077B6;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}


