﻿/* Reset default margin and padding for body */
body {
    margin: 5px;
    padding: 0;
    background-color: #8B4513;
    color: #FFFFFF;
    font-family: 'Trebuchet MS', Tahoma, Geneva, Verdana, sans-serif;
}

/* Enhanced header styles */
h1,
h2,
h3 {
    color: #FFD700;
    margin-bottom: 10px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
    text-align: center;
}

/* Paragraph text styles */
p {
    font-family: 'Verdana', sans-serif;
    line-height: 1.6;
    color: #FFFFFF;
    font-size: 1rem;
}

/* Section headers */
section h2 {
    font-size: 1.5rem;
    border-bottom: 2px solid #FFD700;
    display: inline-block;
    padding-bottom: 5px;
    margin-bottom: 15px;
}

/* Header styles */
header {
    position: relative;
    text-align: center;
}

/* Logo styles */
img.logo {
    width: 635px;
    display: block;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    background: linear-gradient(to bottom, lightblue, white);
    background-color: aliceblue;
    border: thin black solid;
    border-radius: 10px;
}

/* Container styles */
.container {
    padding: 20px;
}

/* Introduction section */
.intro {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.75em;
    font-weight: bold;
    color: lightgreen;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
    font-family: 'Special Elite', 'Playfair Display SC', 'Merriweather', serif;
    line-height: 1.6;
}

/* Contact button */
.contact-button {
    background-color: #61300D;
    border-radius: 5px;
    color: lightblue;
}

/* Footer styles */
footer {
    text-align: center;
    margin-top: 20px;
    font-size: 0.8em;
    font-style: italic;
    font-family: 'Courier New', Courier, monospace;
}

/* Developer tagging */
.cc-link {
    color: lightblue;
    text-decoration: none;
    text-align: center;
}

.cc-link:hover {
    text-decoration: underline;
}

.cc-icon {
    height: 20px;
    margin-right: 5px;
}

.Welcome {
    text-align: center;
    font-size: 3.5em;
    font-weight: bold;
    color: lightblue;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
    font-family: 'Rock Salt', 'Special Elite', 'Fredericka the Great', serif;
    line-height: 1.6;
    white-space: nowrap;
    overflow: hidden;
}

.story-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background-color: #8B4513;
    padding: 10px;
    text-align: center;
}

.Story {
    width: 66%;
    max-width: 800px;
    background-color: #61300D;
    color: white;
    border-radius: 10px;
    padding: 15px;
    text-align: justify;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
}

.Story-Date {
    font-size: 0.99em;
    margin-right: 10px;
    text-align: right;
    font-family: monospace;
    color: lightsalmon;
}

.Megan-Signature {
    font-size: 1.3em;
    font-style: italic;
    font-family: 'Dancing Script', 'Pacifico', 'Great Vibes', cursive;
    margin: 10px 0 0;
    text-align: right;
}

/* Media query for mobile devices */
@media screen and (max-width: 768px) {
    img.logo {
        width: 100%;
    }

    .container {
        padding: 10px;
    }

    .Story {
        width: 100%;
        padding: 10px;
    }

    .Welcome {
        font-size: 2.5em;
    }
}
